/external/mesa3d/src/mesa/program/ |
D | arbprogparse.c | 34 Notes on program parameters, etc. 42 PROGRAM_CONSTANT - indexes into program->Parameters, a known constant/literal 43 PROGRAM_STATE_VAR - indexes into program->Parameters, and may actually be: 45 + a pointer to a "program.local[k]" parameter, or 46 + a pointer to a "program.env[k]" parameter 48 Basically, all the program.local[] and program.env[] values will get mapped 50 having three separate program parameter arrays. 70 struct gl_program *program) in _mesa_parse_arb_fragment_program() argument 81 state.mem_ctx = program; in _mesa_parse_arb_fragment_program() 85 /* Error in the program. Just return. */ in _mesa_parse_arb_fragment_program() [all …]
|
/external/python/cpython3/Lib/unittest/test/ |
D | test_program.py | 52 program = unittest.TestProgram(testRunner=runner, exit=False, verbosity=2) 54 self.assertEqual(program.result, result) 56 self.assertEqual(program.verbosity, 2) 83 program = unittest.TestProgram(testRunner=runner, exit=False, 87 self.assertEqual(('unittest.test',), program.testNames) 98 program = unittest.TestProgram( 104 program.testNames) 107 program = unittest.main(exit=False, 111 self.assertTrue(hasattr(program, 'result')) 168 self.program = InitialisableProgram() [all …]
|
/external/python/cpython2/Lib/unittest/test/ |
D | test_program.py | 50 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/deqp/external/openglcts/modules/gl/ |
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 …]
|
/external/deqp/external/openglcts/modules/gles31/ |
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 …]
|
/external/bcc/src/cc/ |
D | bpf_common.cc | 47 void bpf_module_destroy(void *program) { in bpf_module_destroy() argument 48 auto mod = static_cast<ebpf::BPFModule *>(program); in bpf_module_destroy() 53 size_t bpf_num_functions(void *program) { in bpf_num_functions() argument 54 auto mod = static_cast<ebpf::BPFModule *>(program); in bpf_num_functions() 59 const char * bpf_function_name(void *program, size_t id) { in bpf_function_name() argument 60 auto mod = static_cast<ebpf::BPFModule *>(program); in bpf_function_name() 65 void * bpf_function_start(void *program, const char *name) { in bpf_function_start() argument 66 auto mod = static_cast<ebpf::BPFModule *>(program); in bpf_function_start() 71 void * bpf_function_start_id(void *program, size_t id) { in bpf_function_start_id() argument 72 auto mod = static_cast<ebpf::BPFModule *>(program); in bpf_function_start_id() [all …]
|
D | bpf_common.h | 30 void bpf_module_destroy(void *program); 31 char * bpf_module_license(void *program); 32 unsigned bpf_module_kern_version(void *program); 33 size_t bpf_num_functions(void *program); 34 const char * bpf_function_name(void *program, size_t id); 35 void * bpf_function_start_id(void *program, size_t id); 36 void * bpf_function_start(void *program, const char *name); 37 size_t bpf_function_size_id(void *program, size_t id); 38 size_t bpf_function_size(void *program, const char *name); 39 size_t bpf_num_tables(void *program); [all …]
|
/external/pdfium/fxjs/ |
D | cfxjse_formcalc_context_embeddertest.cpp | 29 EXPECT_EQ(123, value->ToInteger()) << "Program: " << input; in TEST_F() 36 const char* program; in TEST_F() member 64 EXPECT_TRUE(Execute(tests[i].program)); in TEST_F() 69 << "Program: " << tests[i].program; in TEST_F() 77 const char* program; in TEST_F() member 85 EXPECT_TRUE(Execute(tests[i].program)); in TEST_F() 90 << "Program: " << tests[i].program << " Result: '" in TEST_F() 99 const char* program; in TEST_F() member 126 EXPECT_TRUE(Execute(tests[i].program)); in TEST_F() 129 EXPECT_TRUE(value->IsInteger()) << "Program: " << tests[i].program; in TEST_F() [all …]
|
/external/bcc/src/cc/includes/ |
D | bpf_common.h | 30 void bpf_module_destroy(void *program); 31 char * bpf_module_license(void *program); 32 unsigned bpf_module_kern_version(void *program); 33 size_t bpf_num_functions(void *program); 34 const char * bpf_function_name(void *program, size_t id); 35 void * bpf_function_start_id(void *program, size_t id); 36 void * bpf_function_start(void *program, const char *name); 37 size_t bpf_function_size_id(void *program, size_t id); 38 size_t bpf_function_size(void *program, const char *name); 39 size_t bpf_num_tables(void *program); [all …]
|
/external/deqp/modules/gles2/functional/ |
D | es2fNegativeShaderApiTests.cpp | 2 * drawElements Quality Program OpenGL ES 2.0 Module 101 GLuint program = glCreateProgram(); in init() 102 glShaderSource(program, 0, 0, 0); in init() 106 glDeleteProgram(program); in init() 124 GLuint program = glCreateProgram(); in init() 125 glCompileShader(program); in init() 129 glDeleteProgram(program); in init() 152 GLuint program = glCreateProgram(); in init() 176 glShaderBinary(1, &program, binaryFormats[0], 0, 0); in init() 190 glDeleteProgram(program); in init() [all …]
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkPrograms.hpp | 23 * \brief Program utilities. 65 template<typename Program, typename BuildOptions> 75 Program& add (const std::string& name); 76 Program& add (const std::string& name, const BuildOptions* buildOptions); 77 void add (const std::string& name, de::MovePtr<Program>& program); 80 const Program& get (const std::string& name) const; 85 typedef typename std::map<std::string, Program*>::const_iterator IteratorImpl; 91 const Program& operator* (void) const { return getProgram(); } in operator *() 94 const Program& getProgram (void) const { return *m_impl->second; } in getProgram() 110 typedef std::map<std::string, Program*> ProgramMap; [all …]
|
/external/swiftshader/third_party/LLVM/utils/ |
D | check-each-file | 9 program=$2 10 linker=./link-$program 11 echo "Building $program with llvm-native-gcc" 12 rm -f $program 13 gmake -e $program CC=llvm-native-gcc CXX=llvm-native-gxx 14 echo "Erasing $program and re-linking it" 15 rm -f $program 16 echo "rm -f $program" > $linker 17 gmake -n $program >> $linker 23 echo "$program appears to need a dummy __main function; adding one" [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/ |
D | check-each-file | 9 program=$2 10 linker=./link-$program 11 echo "Building $program with llvm-native-gcc" 12 rm -f $program 13 gmake -e $program CC=llvm-native-gcc CXX=llvm-native-gxx 14 echo "Erasing $program and re-linking it" 15 rm -f $program 16 echo "rm -f $program" > $linker 17 gmake -n $program >> $linker 23 echo "$program appears to need a dummy __main function; adding one" [all …]
|
/external/llvm/utils/ |
D | check-each-file | 9 program=$2 10 linker=./link-$program 11 echo "Building $program with llvm-native-gcc" 12 rm -f $program 13 gmake -e $program CC=llvm-native-gcc CXX=llvm-native-gxx 14 echo "Erasing $program and re-linking it" 15 rm -f $program 16 echo "rm -f $program" > $linker 17 gmake -n $program >> $linker 23 echo "$program appears to need a dummy __main function; adding one" [all …]
|
/external/ltp/utils/ffsb-6.0-rc2/ |
D | LICENSE | 14 exception applies to any program that serves as a shell and that is 24 Foundation's software and to any other program whose authors commit to 41 For example, if you distribute copies of such a program, whether 58 Finally, any free program is threatened constantly by software 60 program will individually obtain patent licenses, in effect making the 61 program proprietary. To prevent this, we have made it clear that any 70 0. This License applies to any program or other work which contains 72 under the terms of this General Public License. The "Program", below, 73 refers to any such program or work, and a "work based on the Program" 74 means either the Program or any derivative work under copyright law: [all …]
|
/external/mesa3d/src/compiler/glsl/ |
D | standalone.cpp | 35 #include "program.h" 156 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxTextureImageUnits = 16; in initialize_context() 157 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxUniformComponents = 1024; in initialize_context() 158 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxCombinedUniformComponents = 1024; in initialize_context() 159 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxInputComponents = 0; /* not used */ in initialize_context() 160 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxOutputComponents = 0; /* not used */ in initialize_context() 161 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxAtomicBuffers = 8; in initialize_context() 162 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxAtomicCounters = 8; in initialize_context() 163 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxImageUniforms = 8; in initialize_context() 164 ctx->Const.Program[MESA_SHADER_COMPUTE].MaxUniformBlocks = 12; in initialize_context() [all …]
|
/external/doclava/res/assets/templates-sdk/assets/ |
D | GPL-LICENSE.txt | 16 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/ltp/testcases/kernel/io/disktest/ |
D | LICENSE | 17 any other program whose authors commit to using it. (Some other Free 33 For example, if you distribute copies of such a program, whether gratis or 49 Finally, any free program is threatened constantly by software patents. We 50 wish to avoid the danger that redistributors of a free program will 51 individually obtain patent licenses, in effect making the program 60 0. This License applies to any program or other work which contains a 62 the terms of this General Public License. The "Program", below, refers to 63 any such program or work, and a "work based on the Program" means either 64 the Program or any derivative work under copyright law: that is to say, a 65 work containing the Program or a portion of it, either verbatim or with [all …]
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_compute.c | 59 const struct si_compute *program, in si_compute_get_code_object() argument 62 if (!program->use_code_object_v2) { in si_compute_get_code_object() 66 (program->shader.binary.code + symbol_offset); in si_compute_get_code_object() 87 struct si_compute *program = (struct si_compute *)job; in si_create_compute_state_async() local 88 struct si_shader *shader = &program->shader; in si_create_compute_state_async() 91 struct pipe_debug_callback *debug = &program->compiler_ctx_state.debug; in si_create_compute_state_async() 95 assert(thread_index < ARRAY_SIZE(program->screen->tm)); in si_create_compute_state_async() 96 tm = program->screen->tm[thread_index]; in si_create_compute_state_async() 100 sel.screen = program->screen; in si_create_compute_state_async() 101 tgsi_scan_shader(program->tokens, &sel.info); in si_create_compute_state_async() [all …]
|
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/ |
D | LICENCE | 16 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/kmod/tools/ |
D | COPYING | 16 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/autotest/client/profilers/powertop/src/ |
D | COPYING | 16 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/ltp/utils/benchmark/ebizzy-0.3/ |
D | LICENSE | 16 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/ltp/testcases/open_posix_testsuite/stress/threads/fork/ |
D | LICENCE | 16 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/iproute2/ |
D | NOTICE | 16 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 …]
|