/aosp_15_r20/external/mesa3d/src/panfrost/ci/ |
H A D | panfrost-t860-fails.txt | 66 program@bitcoin: phatk kernel,Crash 67 program@build@include-directories,Fail 68 program@build@vector-data-types,Fail 69 program@execute@amdgcn-f32-inline-immediates,Fail 70 program@execute@amdgcn-f32-inline-immediates@add integer 64,Fail 71 program@[email protected]_extend_inreg,Fail 72 program@[email protected]_extend_inreg@SALU i16 in i64 0,Fail 73 program@[email protected]_extend_inreg@SALU i32 in i64 0,Fail 74 program@[email protected]_extend_inreg@SALU i8 in i64 0,Fail 75 program@[email protected]_extend_inreg@VALU i16 in i64 0,Fail [all …]
|
/aosp_15_r20/external/deqp/external/openglcts/modules/gl/ |
H A D | gl4cProgramInterfaceQueryTests.cpp | 51 "expected results when used to get data from program\n" in Purpose() 58 return "Create a program using " + ShadersDesc() + in Method() 81 void LinkProgram(GLuint program) in LinkProgram() argument 83 glLinkProgram(program); in LinkProgram() 86 glGetProgramInfoLog(program, sizeof(log), &length, log); in LinkProgram() 89 m_context.getTestContext().getLog() << tcu::TestLog::Message << "Program Info Log:\n" in LinkProgram() 207 …virtual inline void VerifyGetProgramInterfaceiv(GLuint program, GLenum programInterface, GLenum pn… in VerifyGetProgramInterfaceiv() argument 211 glGetProgramInterfaceiv(program, programInterface, pname, &res); in VerifyGetProgramInterfaceiv() 220 …virtual inline void VerifyGetProgramResourceIndex(GLuint program, GLenum programInterface, const s… in VerifyGetProgramResourceIndex() argument 223 GLuint res = glGetProgramResourceIndex(program, programInterface, name.c_str()); in VerifyGetProgramResourceIndex() [all …]
|
/aosp_15_r20/external/deqp/external/openglcts/modules/gles31/ |
H A D | es31cProgramInterfaceQueryTests.cpp | 55 "expected results when used to get data from program\n" in Purpose() 62 return "Create a program using " + ShadersDesc() + in Method() 81 void LinkProgram(GLuint program) in LinkProgram() argument 83 glLinkProgram(program); in LinkProgram() 86 glGetProgramInfoLog(program, sizeof(log), &length, log); in LinkProgram() 89 m_context.getTestContext().getLog() << tcu::TestLog::Message << "Program Info Log:\n" in LinkProgram() 155 …virtual inline void VerifyGetProgramInterfaceiv(GLuint program, GLenum programInterface, GLenum pn… in VerifyGetProgramInterfaceiv() argument 159 glGetProgramInterfaceiv(program, programInterface, pname, &res); in VerifyGetProgramInterfaceiv() 168 …virtual inline void VerifyGetProgramResourceIndex(GLuint program, GLenum programInterface, const s… in VerifyGetProgramResourceIndex() argument 171 GLuint res = glGetProgramResourceIndex(program, programInterface, name.c_str()); in VerifyGetProgramResourceIndex() [all …]
|
/aosp_15_r20/external/mesa3d/src/imagination/vulkan/pds/ |
H A D | pvr_pds.c | 423 struct pvr_pds_pixel_shader_sa_program *program) in pvr_pds_pixel_shader_sa_initialize() argument 425 memset(program, 0, sizeof(*program)); in pvr_pds_pixel_shader_sa_initialize() 436 * \param last Last DMA in program. 520 * Generates the PDS pixel event program. 522 * \param program Pointer to the PDS pixel event program. 523 * \param buffer Pointer to the buffer for the program. 526 * \returns Pointer to just beyond the buffer for the program. 529 pvr_pds_generate_pixel_event(struct pvr_pds_event_program *restrict program, in pvr_pds_generate_pixel_event() argument 547 (2 * program->num_emit_word_pairs), in pvr_pds_generate_pixel_event() 552 program->num_emit_word_pairs, in pvr_pds_generate_pixel_event() [all …]
|
/aosp_15_r20/hardware/google/gfxstream/host/gl/OpenGLESDispatch/ |
D | gles31_only_dispatch_logging_wrappers.impl | 54 void glUseProgramStages_dispatchLoggingWrapper(GLuint pipeline, GLbitfield stages, GLuint program) { 55 …TCH_DEBUG_LOG("glUseProgramStages(pipeline:%d, stages:%d, program:%d)", pipeline, stages, program); 56 GLDispatch::glUseProgramStages_underlying(pipeline, stages, program); 59 void glActiveShaderProgram_dispatchLoggingWrapper(GLuint pipeline, GLuint program) { 60 DISPATCH_DEBUG_LOG("glActiveShaderProgram(pipeline:%d, program:%d)", pipeline, program); 61 GLDispatch::glActiveShaderProgram_underlying(pipeline, program); 69 void glProgramUniform1f_dispatchLoggingWrapper(GLuint program, GLint location, GLfloat v0) { 70 DISPATCH_DEBUG_LOG("glProgramUniform1f(program:%d, location:%d, v0:%f)", program, location, v0); 71 GLDispatch::glProgramUniform1f_underlying(program, location, v0); 74 void glProgramUniform2f_dispatchLoggingWrapper(GLuint program, GLint location, GLfloat v0, GLfloat … [all …]
|
/aosp_15_r20/external/angle/src/tests/gl_tests/ |
H A D | LinkAndRelinkTest.cpp | 37 // program. 46 GLuint program = glCreateProgram(); in TEST_P() local 47 glAttachShader(program, vs); in TEST_P() 48 glAttachShader(program, fs); in TEST_P() 50 glLinkProgram(program); in TEST_P() 51 glUseProgram(program); in TEST_P() 52 glLinkProgram(program); in TEST_P() 56 // When a program link or relink fails, if you try to install the unsuccessfully 57 // linked program (via UseProgram) and start rendering or dispatch compute, 59 // The result depends on the previous state: Whether a valid program is [all …]
|
/aosp_15_r20/external/OpenCL-CTS/test_conformance/compiler/ |
H A D | test_compile.cpp | 162 cl_program program; in test_large_single_compile() local 192 /* Try to create a program with these lines */ in test_large_single_compile() 193 error = create_single_kernel_helper_create_program(context, &program, in test_large_single_compile() 195 if (program == NULL || error != CL_SUCCESS) in test_large_single_compile() 197 log_error("ERROR: Unable to create long test program with %d lines! " in test_large_single_compile() 201 if (program != NULL) in test_large_single_compile() 203 error = clReleaseProgram(program); in test_large_single_compile() 204 test_error(error, "Unable to release a program object"); in test_large_single_compile() 210 error = clBuildProgram(program, 1, &deviceID, NULL, NULL, NULL); in test_large_single_compile() 211 test_error(error, "Unable to build a long program"); in test_large_single_compile() [all …]
|
H A D | test_build_helpers.cpp | 68 clProgramWrapper program; in test_load_program_source() local 76 program = clCreateProgramWithSource( in test_load_program_source() 78 test_error( error, "Unable to create reference program" ); in test_load_program_source() 81 error = clGetProgramInfo( program, CL_PROGRAM_SOURCE, 0, NULL, &length ); in test_load_program_source() 82 test_error( error, "Unable to get length of first program source" ); in test_load_program_source() 87 log_error("ERROR: Length of program (%ld) does not match reference " in test_load_program_source() 94 error = clGetProgramInfo( program, CL_PROGRAM_SOURCE, length, buffer, NULL ); in test_load_program_source() 95 test_error( error, "Unable to get buffer of first program source" ); in test_load_program_source() 99 log_error( "ERROR: Program sources do not match!\n" ); in test_load_program_source() 112 clProgramWrapper program; in test_load_multistring_source() local [all …]
|
H A D | test_build_options.cpp | 66 cl_int get_result_from_program( cl_context context, cl_command_queue queue, cl_program program, cl_… in get_result_from_program() argument 69 clKernelWrapper kernel = clCreateKernel( program, "sample_test", &error ); in get_result_from_program() 70 test_error( error, "Unable to create kernel from program" ); in get_result_from_program() 98 clProgramWrapper program; in test_options_build_optimizations() local 99 …error = create_single_kernel_helper_create_program(context, &program, 1, options_test_kernel, opti… in test_options_build_optimizations() 100 if( program == NULL || error != CL_SUCCESS ) in test_options_build_optimizations() 102 log_error( "ERROR: Unable to create reference program!\n" ); in test_options_build_optimizations() 108 error = clBuildProgram( program, 1, &deviceID, optimization_options[i], NULL, NULL ); in test_options_build_optimizations() 109 test_error( error, "Test program did not properly build" ); in test_options_build_optimizations() 111 …error = clGetProgramBuildInfo( program, deviceID, CL_PROGRAM_BUILD_STATUS, sizeof( status ), &stat… in test_options_build_optimizations() [all …]
|
/aosp_15_r20/external/mesa3d/src/amd/compiler/ |
H A D | aco_interface.cpp | 53 validate(Program* program) in validate() argument 58 ASSERTED bool is_valid = validate_ir(program); in validate() 63 get_disasm_string(Program* program, std::vector<uint32_t>& code, unsigned exec_size) in get_disasm_string() argument 72 if (check_print_asm_support(program)) { in get_disasm_string() 73 print_asm(program, code, exec_size / 4u, memf); in get_disasm_string() 80 aco_print_program(program, memf); in get_disasm_string() 93 const struct aco_shader_info* info, std::unique_ptr<Program>& program) in aco_postprocess_shader() argument 98 aco_print_program(program.get(), stderr); in aco_postprocess_shader() 100 ASSERTED bool is_valid = validate_cfg(program.get()); in aco_postprocess_shader() 104 dominator_tree(program.get()); in aco_postprocess_shader() [all …]
|
H A D | aco_live_var_analysis.cpp | 62 Program* program; member 92 if (ctx.program->blocks[succ].logical_preds.empty()) { in compute_live_out() 93 live.insert(ctx.program->live.live_in[succ]); in compute_live_out() 95 for (unsigned t : ctx.program->live.live_in[succ]) { in compute_live_out() 96 if (ctx.program->temp_rc[t].is_linear()) in compute_live_out() 105 live = IDSet(ctx.program->live.live_in[block->linear_succs[0]], ctx.m); in compute_live_out() 107 live.insert(ctx.program->live.live_in[block->linear_succs[1]]); in compute_live_out() 111 for (unsigned t : ctx.program->live.live_in[block->logical_succs.back()]) { in compute_live_out() 112 if (!ctx.program->temp_rc[t].is_linear()) in compute_live_out() 122 Block& succ = ctx.program->blocks[block->linear_succs[0]]; in compute_live_out() [all …]
|
/aosp_15_r20/external/executorch/runtime/executor/test/ |
H A D | program_test.cpp | 9 #include <executorch/runtime/executor/program.h> 31 using executorch::runtime::Program; 38 constexpr Program::Verification kDefaultVerification = 39 Program::Verification::InternalConsistency; 56 Program::kMinHeadBytes, in SetUp() 58 DataLoader::SegmentInfo(DataLoader::SegmentInfo::Type::Program)); in SetUp() 61 Program::check_header(header->data(), header->size()), in SetUp() 62 Program::HeaderStatus::CompatibleVersion); in SetUp() 74 Program::kMinHeadBytes, in SetUp() 76 DataLoader::SegmentInfo(DataLoader::SegmentInfo::Type::Program)); in SetUp() [all …]
|
/aosp_15_r20/external/python/cpython3/Lib/unittest/test/ |
D | test_program.py | 53 program = unittest.TestProgram(testRunner=runner, exit=False, verbosity=2) 55 self.assertEqual(program.result, result) 57 self.assertEqual(program.verbosity, 2) 95 program = unittest.TestProgram(testRunner=runner, exit=False, 99 self.assertEqual(('unittest.test',), program.testNames) 110 program = unittest.TestProgram( 116 program.testNames) 120 program = unittest.main(exit=False, 124 self.assertTrue(hasattr(program, 'result')) 203 self.program = InitialisableProgram() [all …]
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/unittest/test/ |
H A D | test_program.py | 53 program = unittest.TestProgram(testRunner=runner, exit=False, verbosity=2) 55 self.assertEqual(program.result, result) 57 self.assertEqual(program.verbosity, 2) 95 program = unittest.TestProgram(testRunner=runner, exit=False, 99 self.assertEqual(('unittest.test',), program.testNames) 110 program = unittest.TestProgram( 116 program.testNames) 120 program = unittest.main(exit=False, 124 self.assertTrue(hasattr(program, 'result')) 203 self.program = InitialisableProgram() [all …]
|
/aosp_15_r20/external/deqp/modules/gles2/functional/ |
H A D | es2fNegativeShaderApiTests.cpp | 2 * drawElements Quality Program OpenGL ES 2.0 Module 100 GLuint program = glCreateProgram(); in init() 101 glShaderSource(program, 0, 0, 0); in init() 105 glDeleteProgram(program); in init() 123 GLuint program = glCreateProgram(); in init() 124 glCompileShader(program); in init() 128 glDeleteProgram(program); in init() 149 GLuint program = glCreateProgram(); in init() 176 glShaderBinary(1, &program, binaryFormats[0], 0, 0); in init() 191 glDeleteProgram(program); in init() [all …]
|
/aosp_15_r20/external/mesa3d/src/mesa/program/ |
H A D | arbprogparse.c | 36 Notes on program parameters, etc. 43 PROGRAM_CONSTANT - indexes into program->Parameters, a known constant/literal 44 PROGRAM_STATE_VAR - indexes into program->Parameters, and may actually be: 46 + a pointer to a "program.local[k]" parameter, or 47 + a pointer to a "program.env[k]" parameter 49 Basically, all the program.local[] and program.env[] values will get mapped 51 having three separate program parameter arrays. 69 struct gl_program *program) in _mesa_parse_arb_fragment_program() argument 80 state.mem_ctx = program; in _mesa_parse_arb_fragment_program() 84 /* Error in the program. Just return. */ in _mesa_parse_arb_fragment_program() [all …]
|
/aosp_15_r20/frameworks/base/opengl/java/android/opengl/ |
H A D | GLES31.java | 254 …// C function void glGetProgramInterfaceiv ( GLuint program, GLenum programInterface, GLenum pname… 257 int program, in glGetProgramInterfaceiv() argument 264 …// C function void glGetProgramInterfaceiv ( GLuint program, GLenum programInterface, GLenum pname… 267 int program, in glGetProgramInterfaceiv() argument 273 …// C function GLuint glGetProgramResourceIndex ( GLuint program, GLenum programInterface, const GL… 276 int program, in glGetProgramResourceIndex() argument 281 …// C function void glGetProgramResourceName ( GLuint program, GLenum programInterface, GLuint inde… 284 int program, in glGetProgramResourceName() argument 289 …// C function void glGetProgramResourceiv ( GLuint program, GLenum programInterface, GLuint index,… 292 int program, in glGetProgramResourceiv() argument [all …]
|
/aosp_15_r20/hardware/google/gfxstream/include/OpenGLESDispatch/ |
D | gles31_only_functions.h | 21 …ProgramStages, (GLuint pipeline, GLbitfield stages, GLuint program), (pipeline, stages, program)) \ 22 X(void, glActiveShaderProgram, (GLuint pipeline, GLuint program), (pipeline, program)) \ 24 …X(void, glProgramUniform1f, (GLuint program, GLint location, GLfloat v0), (program, location, v0))… 25 …X(void, glProgramUniform2f, (GLuint program, GLint location, GLfloat v0, GLfloat v1), (program, lo… 26 …X(void, glProgramUniform3f, (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2), … 27 …(void, glProgramUniform4f, (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GL… 28 X(void, glProgramUniform1i, (GLuint program, GLint location, GLint v0), (program, location, v0)) \ 29 …X(void, glProgramUniform2i, (GLuint program, GLint location, GLint v0, GLint v1), (program, locati… 30 …X(void, glProgramUniform3i, (GLuint program, GLint location, GLint v0, GLint v1, GLint v2), (progr… 31 …X(void, glProgramUniform4i, (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v… [all …]
|
/aosp_15_r20/packages/apps/TV/src/com/android/tv/data/ |
D | ProgramDataManager.java | 42 import com.android.tv.data.api.Program; 72 // To prevent from too many program update operations at the same time, we give random interval 128 private final Map<Long, Program> mChannelIdCurrentProgramMap = new ConcurrentHashMap<>(); 133 private Map<Long, ArrayList<Program>> mChannelIdProgramCache = new ConcurrentHashMap<>(); 142 // Any program that ends prior to this time will be removed from the cache 143 // when a channel's current program is updated. 148 private final LruCache<Long, Program> mZeroLengthProgramCache = new LruCache<>(10); 219 * Set the program prefetch update wait which gives the delay to query all programs from DB to 270 /** Returns the current program at the specified channel. */ 272 public Program getCurrentProgram(long channelId) { in getCurrentProgram() [all …]
|
/aosp_15_r20/external/angle/scripts/ |
H A D | entry_point_packed_gl_enums.json | 17 "program": "ShaderProgramID" string 26 "program": "ShaderProgramID", string 40 "program": "ShaderProgramID" string 61 "program": "ShaderProgramID" string 64 "program": "ShaderProgramID" string 95 "program": "ShaderProgramID", string 298 "program": "ShaderProgramID" string 331 "program": "ShaderProgramID", string 423 "program": "ShaderProgramID" string 426 "program": "ShaderProgramID" string [all …]
|
/aosp_15_r20/packages/apps/TV/tests/robotests/src/com/android/tv/data/ |
D | ProgramTest.java | 28 import com.android.tv.data.api.Program; 29 import com.android.tv.data.api.Program.CriticScore; 56 Program program = new ProgramImpl.Builder().build(); in testBuild() local 57 assertWithMessage("isValid").that(program.isValid()).isFalse(); in testBuild() 62 Program program = new ProgramImpl.Builder().setCanonicalGenres("").build(); in testNoGenres() local 63 assertNullCanonicalGenres(program); in testNoGenres() 64 assertHasGenre(program, NOT_FOUND_GENRE, false); in testNoGenres() 65 assertHasGenre(program, FAMILY_GENRE_ID, false); in testNoGenres() 66 assertHasGenre(program, COMEDY_GENRE_ID, false); in testNoGenres() 67 assertHasGenre(program, GenreItems.ID_ALL_CHANNELS, true); in testNoGenres() [all …]
|
/aosp_15_r20/external/mesa3d/src/mesa/main/ |
H A D | uniforms.c | 47 #include "program/program.h" 54 * Update the vertex/fragment program's TexturesUsed array. 62 * So, scan the program->SamplerUnits[] and program->SamplerTargets[] 82 * to the same texture image unit within a program object." in update_single_shader_texture_used() 94 struct gl_program *glprog = shProg->_LinkedShaders[stage]->Program; in update_single_shader_texture_used() 342 _mesa_ProgramUniform1f(GLuint program, GLint location, GLfloat v0) in _mesa_ProgramUniform1f() argument 346 _mesa_lookup_shader_program_err(ctx, program, in _mesa_ProgramUniform1f() 352 _mesa_ProgramUniform2f(GLuint program, GLint location, GLfloat v0, GLfloat v1) in _mesa_ProgramUniform2f() argument 359 shProg = _mesa_lookup_shader_program_err(ctx, program, "glProgramUniform2f"); in _mesa_ProgramUniform2f() 364 _mesa_ProgramUniform3f(GLuint program, GLint location, GLfloat v0, GLfloat v1, in _mesa_ProgramUniform3f() argument [all …]
|
/aosp_15_r20/external/deqp/modules/gles3/functional/ |
H A D | es3fNegativeShaderApiTests.cpp | 2 * drawElements Quality Program OpenGL ES 3.0 Module 117 GLuint program = glCreateProgram(); in init() 118 glShaderSource(program, 0, 0, 0); in init() 122 glDeleteProgram(program); in init() 134 GLuint program = glCreateProgram(); in init() 135 glCompileShader(program); in init() 139 glDeleteProgram(program); in init() 199 GLuint program = glCreateProgram(); in init() 201 …g << TestLog::Section("", "GL_INVALID_OPERATION is generated if program is not a program object."); in init() 207 glAttachShader(program, program); in init() [all …]
|
H A D | es3fShaderApiTests.cpp | 2 * drawElements Quality Program OpenGL ES 3.0 Module 186 void drawWithProgram(glu::RenderContext &renderCtx, uint32_t program) in drawWithProgram() argument 194 gl.useProgram(program); in drawWithProgram() 198 glu::draw(renderCtx, program, DE_LENGTH_OF_ARRAY(vertexArrays), &vertexArrays[0], in drawWithProgram() 354 void logProgram(TestLog &log, glu::RenderContext &renderCtx, glu::Program &program, ShaderAllocator… in logProgram() argument 356 log << TestLog::ShaderProgram(program.getLinkStatus(), program.getInfoLog()); in logProgram() 369 void logVertexFragmentProgram(TestLog &log, glu::RenderContext &renderCtx, glu::Program &program, in logVertexFragmentProgram() argument 374 log << TestLog::ShaderProgram(program.getLinkStatus(), program.getInfoLog()); in logVertexFragmentProgram() 447 // Base class for simple program API tests 489 const GLuint program = glCreateProgram(); in linkProgram() local [all …]
|
/aosp_15_r20/packages/modules/NetworkStack/tests/unit/src/android/net/apf/ |
D | ApfGeneratorTest.kt | 423 val program = ApfV6Generator(ramSize, ramSize, clampSize).addJumpIfPktAtR0ContainDnsQ( in testValidateDnsNames() constant 437 var program = v4gen.generate() in testApfInstructionsEncoding() variable 441 program in testApfInstructionsEncoding() 445 ApfJniUtils.disassembleApf(program).map { it.trim() } in testApfInstructionsEncoding() 450 program = gen.generate().skipDataAndDebug() in testApfInstructionsEncoding() 454 program in testApfInstructionsEncoding() 458 ApfJniUtils.disassembleApf(program).map { it.trim() } in testApfInstructionsEncoding() 463 program = gen.generate().skipDataAndDebug() in testApfInstructionsEncoding() 470 program in testApfInstructionsEncoding() 474 ApfJniUtils.disassembleApf(program).map { it.trim() } in testApfInstructionsEncoding() [all …]
|