Home
last modified time | relevance | path

Searched full:program (Results 1 – 25 of 13164) sorted by relevance

12345678910>>...527

/external/mesa3d/src/mesa/program/
Darbprogparse.c36 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 …]
/external/python/cpython2/Lib/unittest/test/
Dtest_program.py50 program = unittest.TestProgram(testRunner=runner, exit=False, verbosity=2)
52 self.assertEqual(program.result, result)
54 self.assertEqual(program.verbosity, 2)
70 program = unittest.main(exit=False,
74 self.assertTrue(hasattr(program, 'result'))
128 self.program = InitialisableProgram()
129 self.program.createTests = lambda: None
135 program = self.program
137 program.msg = msg
138 program.exit = True
[all …]
/external/OpenCL-CTS/test_conformance/compiler/
Dtest_build_helpers.cpp68 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 …]
Dtest_build_options.cpp66 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 …]
Dtest_compile.cpp162 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 …]
/external/mesa3d/src/gfxstream/include/OpenGLESDispatch/
Dgles31_only_functions.h21 …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 …]
/external/angle/src/tests/gl_tests/
DLinkAndRelinkTest.cpp37 // 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 …]
/external/deqp/external/openglcts/modules/gl/
Dgl4cProgramInterfaceQueryTests.cpp51 "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 …]
/external/python/cpython3/Lib/unittest/test/
Dtest_program.py53 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 …]
/external/mesa3d/src/amd/compiler/
Daco_interface.cpp79 validate(aco::Program* program) in validate() argument
84 ASSERTED bool is_valid = aco::validate_ir(program); in validate()
89 get_disasm_string(aco::Program* program, std::vector<uint32_t>& code, unsigned exec_size) in get_disasm_string() argument
98 if (check_print_asm_support(program)) { in get_disasm_string()
99 aco::print_asm(program, code, exec_size / 4u, memf); in get_disasm_string()
106 aco::aco_print_program(program, memf); in get_disasm_string()
119 const struct aco_shader_info* info, std::unique_ptr<aco::Program>& program) in aco_postprocess_shader() argument
124 aco_print_program(program.get(), stderr); in aco_postprocess_shader()
126 ASSERTED bool is_valid = aco::validate_cfg(program.get()); in aco_postprocess_shader()
131 aco::dominator_tree(program.get()); in aco_postprocess_shader()
[all …]
Daco_live_var_analysis.cpp128 process_live_temps_per_block(Program* program, live& lives, Block* block, unsigned& worklist, in process_live_temps_per_block() argument
139 new_demand += Temp(t, program->temp_rc[t]); in process_live_temps_per_block()
149 program->needs_vcc |= instr_needs_vcc(insn); in process_live_temps_per_block()
158 program->needs_vcc = true; in process_live_temps_per_block()
187 program->needs_vcc = true; in process_live_temps_per_block()
228 program->needs_vcc = true; in process_live_temps_per_block()
265 RegClass rc = program->temp_rc[t]; in process_live_temps_per_block()
270 aco_err(program, "Temporary never defined or are defined after use: %%%d in BB%d", t, in process_live_temps_per_block()
295 program->needs_vcc = true; in process_live_temps_per_block()
318 calc_waves_per_workgroup(Program* program) in calc_waves_per_workgroup() argument
[all …]
/external/deqp/external/openglcts/modules/gles31/
Des31cProgramInterfaceQueryTests.cpp55 "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 …]
/external/mesa3d/src/imagination/vulkan/pds/
Dpvr_pds.c423 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 …]
/external/bcc/src/cc/
Dbcc_common.cc44 void bpf_module_destroy(void *program) { in bpf_module_destroy() argument
45 auto mod = static_cast<ebpf::BPFModule *>(program); in bpf_module_destroy()
50 size_t bpf_num_functions(void *program) { in bpf_num_functions() argument
51 auto mod = static_cast<ebpf::BPFModule *>(program); in bpf_num_functions()
56 const char * bpf_function_name(void *program, size_t id) { in bpf_function_name() argument
57 auto mod = static_cast<ebpf::BPFModule *>(program); in bpf_function_name()
62 void * bpf_function_start(void *program, const char *name) { in bpf_function_start() argument
63 auto mod = static_cast<ebpf::BPFModule *>(program); in bpf_function_start()
68 void * bpf_function_start_id(void *program, size_t id) { in bpf_function_start_id() argument
69 auto mod = static_cast<ebpf::BPFModule *>(program); in bpf_function_start_id()
[all …]
Dbcc_common.h34 void bpf_module_destroy(void *program);
35 char * bpf_module_license(void *program);
36 unsigned bpf_module_kern_version(void *program);
37 size_t bpf_num_functions(void *program);
38 const char * bpf_function_name(void *program, size_t id);
39 void * bpf_function_start_id(void *program, size_t id);
40 void * bpf_function_start(void *program, const char *name);
41 size_t bpf_function_size_id(void *program, size_t id);
42 size_t bpf_function_size(void *program, const char *name);
43 size_t bpf_num_tables(void *program);
[all …]
/external/angle/scripts/
Dentry_point_packed_gl_enums.json17 "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 …]
/external/deqp/modules/gles2/functional/
Des2fNegativeShaderApiTests.cpp2 * 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 …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkPrograms.hpp23 * \brief Program utilities.
84 template <typename Program, typename BuildOptions>
93 …ProgramCollection(const ProgramCollection<Program, BuildOptions> &other) …
94 …ProgramCollection<Program, BuildOptions> &operator=(const ProgramCollection<Program, BuildOptions>…
98 Program &add(const std::string &name);
99 Program &add(const std::string &name, const BuildOptions *buildOptions);
100 void add(const std::string &name, de::MovePtr<Program> &program);
103 const Program &get(const std::string &name) const;
108 typedef typename std::map<std::string, Program *>::const_iterator IteratorImpl;
120 const Program &operator*(void) const in operator *()
[all …]
/external/ComputeLibrary/arm_compute/core/CL/
DCLCompileContext.h86 /** Program class */
87 class Program final
91 Program();
92 /** Construct program from source file.
94 * @param[in] context CL context used to create the program.
95 * @param[in] name Program name.
96 * @param[in] source Program source.
98 Program(cl::Context context, std::string name, std::string source);
99 /** Construct program from binary file.
101 * @param[in] context CL context used to create the program.
[all …]
/external/tensorflow/tensorflow/tools/toolchains/win/tf_win_06152021/
DBUILD211 …"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30037\\…
212 …"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30037\\…
213 "C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\include\\um",
214 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\ucrt",
215 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\shared",
216 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\um",
217 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\winrt",
218 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\cppwinrt",
224 …msvc_cl_path = "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.…
225Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30037\\ATLMF…
[all …]
/external/tensorflow/tensorflow/tools/toolchains/win/tf_win_06212021/
DBUILD211 …"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.27.29110\\…
212 …"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.27.29110\\…
213 "C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\include\\um",
214 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\ucrt",
215 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\shared",
216 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\um",
217 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\winrt",
218 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\cppwinrt",
224 …msvc_cl_path = "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.27.…
225Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.27.29110\\ATLMF…
[all …]
/external/tensorflow/tensorflow/tools/toolchains/win/tf_win_02212022/
DBUILD211 …"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30133\\…
212 …"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30133\\…
213 "C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\include\\um",
214 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\ucrt",
215 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\shared",
216 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\um",
217 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\winrt",
218 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\cppwinrt",
224 …msvc_cl_path = "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.…
225Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30133\\ATLMF…
[all …]
/external/tensorflow/tensorflow/tools/toolchains/win/tf_win_02082022/
DBUILD211 …"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30133\\…
212 …"C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30133\\…
213 "C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\include\\um",
214 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\ucrt",
215 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\shared",
216 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\um",
217 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\winrt",
218 "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.19041.0\\cppwinrt",
224 …msvc_cl_path = "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.…
225Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.29.30133\\ATLMF…
[all …]
/external/libconfig/contrib/ls-config/
DLICENSE16 Foundation's software and to any other program whose authors commit to
33 For example, if you distribute copies of such a program, whether
50 Finally, any free program is threatened constantly by software
52 program will individually obtain patent licenses, in effect making the
53 program proprietary. To prevent this, we have made it clear that any
62 0. This License applies to any program or other work which contains
64 under the terms of this General Public License. The "Program", below,
65 refers to any such program or work, and a "work based on the Program"
66 means either the Program or any derivative work under copyright law:
67 that is to say, a work containing the Program or a portion of it,
[all …]
/external/harfbuzz_ng/
DLICENSE_GPLv2.TXT10 …lies to most of the Free Software Foundation's software and to any other program whose authors com…
16 For example, if you distribute copies of such a program, whether gratis or for a fee, you must give…
22program is threatened constantly by software patents. We wish to avoid the danger that redistribut…
27program or other work which contains a notice placed by the copyright holder saying it may be dist…
29Program is not restricted, and the output from the Program is covered only if its contents constit…
31Program's source code as you receive it, in any medium, provided that you conspicuously and approp…
35 …ou may modify your copy or copies of the Program or any portion of it, thus forming a work based o…
38 …ute or publish, that in whole or in part contains or is derived from the Program or any part there…
39program normally reads commands interactively when run, you must cause it, when started running fo…
40Program, and can be reasonably considered independent and separate works in themselves, then this …
[all …]

12345678910>>...527