/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/ |
H A D | sm4_to_tgsi.h | 32 void* sm4_to_tgsi(struct sm4_program& program); 33 void* sm4_to_tgsi_linkage_only(struct sm4_program& program);
|
/external/mesa3d/src/gallium/auxiliary/postprocess/ |
H A D | pp_filters.h | 46 void pp_filter_setup_in(struct program *, struct pipe_resource *); 47 void pp_filter_setup_out(struct program *, struct pipe_resource *); 48 void pp_filter_end_pass(struct program *); 51 void pp_filter_misc_state(struct program *); 52 void pp_filter_draw(struct program *); 53 void pp_filter_set_fb(struct program *); 54 void pp_filter_set_clear_fb(struct program *);
|
/external/ceres-solver/internal/ceres/ |
H A D | summary_utils.cc | 33 #include "ceres/program.h" 49 void SummarizeGivenProgram(const Program& program, Solver::Summary* summary) { argument 50 summary->num_parameter_blocks = program.NumParameterBlocks(); 51 summary->num_parameters = program.NumParameters(); 52 summary->num_effective_parameters = program.NumEffectiveParameters(); 53 summary->num_residual_blocks = program.NumResidualBlocks(); 54 summary->num_residuals = program.NumResiduals(); 57 void SummarizeReducedProgram(const Program& program, Solver::Summary* summary) { argument 58 summary->num_parameter_blocks_reduced = program.NumParameterBlocks(); 59 summary->num_parameters_reduced = program [all...] |
H A D | parameter_block_ordering.h | 58 int ComputeSchurOrdering(const Program& program, 63 // blocks occur in the program. 64 int ComputeStableSchurOrdering(const Program& program, 70 // the program. 71 void ComputeRecursiveIndependentSetOrdering(const Program& program, 79 Graph<ParameterBlock*>* CreateHessianGraph(const Program& program);
|
H A D | evaluator.cc | 52 Program* program, 59 program); 66 program); 72 options, program); 76 program); 51 Create(const Evaluator::Options& options, Program* program, string* error) argument
|
H A D | compressed_row_jacobian_writer.h | 49 Program* program) 50 : program_(program) { 56 // program. This is useful when Solver::Options::use_block_amd = 64 const Program* program, 81 const Program* program, 48 CompressedRowJacobianWriter(Evaluator::Options , Program* program) argument
|
H A D | reorder_program.h | 45 // Reorder the parameter blocks in program using the ordering 48 Program* program, 51 // Reorder the residuals for program, if necessary, so that the residuals 55 Program* program, 73 // was used to order the program. 79 Program* program, 95 Program* program,
|
/external/valgrind/none/tests/ |
H A D | allexec32.stdout.exp | 2 program exec-ed: ./allexec32 4 program exec-ed: ./allexec32 constant_arg1 constant_arg2 6 program exec-ed: ./allexec32 9 program exec-ed: ./allexec64 11 program exec-ed: ./allexec64 constant_arg1 constant_arg2 13 program exec-ed: ./allexec64
|
H A D | allexec64.stdout.exp | 2 program exec-ed: ./allexec32 4 program exec-ed: ./allexec32 constant_arg1 constant_arg2 6 program exec-ed: ./allexec32 9 program exec-ed: ./allexec64 11 program exec-ed: ./allexec64 constant_arg1 constant_arg2 13 program exec-ed: ./allexec64
|
H A D | cmdline3.stderr.exp | 1 valgrind: no program specified
|
H A D | cmdline5.stderr.exp | 1 valgrind: ./no-such-program-my-friend: No such file or directory
|
/external/skia/src/gpu/glsl/ |
H A D | GrGLSLGeometryShaderBuilder.cpp | 12 GrGLSLGeometryBuilder::GrGLSLGeometryBuilder(GrGLSLProgramBuilder* program) argument 13 : INHERITED(program) {
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
H A D | _f_p_g_m.py | 9 program = ttProgram.Program() 10 program.fromBytecode(data) 11 self.program = program 14 return self.program.getBytecode() 17 self.program.toXML(writer, ttFont) 21 program = ttProgram.Program() 22 program.fromXML(name, attrs, content, ttFont) 23 self.program = program [all...] |
/external/fonttools/Tools/fontTools/ttLib/tables/ |
H A D | _f_p_g_m.py | 9 program = ttProgram.Program() 10 program.fromBytecode(data) 11 self.program = program 14 return self.program.getBytecode() 17 self.program.toXML(writer, ttFont) 21 program = ttProgram.Program() 22 program.fromXML(name, attrs, content, ttFont) 23 self.program = program [all...] |
/external/mesa3d/src/mesa/program/ |
H A 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. 69 struct gl_fragment_program *program) 83 /* Error in the program 67 _mesa_parse_arb_fragment_program(struct gl_context* ctx, GLenum target, const GLvoid *str, GLsizei len, struct gl_fragment_program *program) argument 163 _mesa_parse_arb_vertex_program(struct gl_context *ctx, GLenum target, const GLvoid *str, GLsizei len, struct gl_vertex_program *program) argument [all...] |
/external/lldb/test/unittest2/test/ |
H A D | test_program.py | 33 program = unittest2.TestProgram(testRunner=runner, exit=False, verbosity=2) 35 self.assertEqual(program.result, result) 37 self.assertEqual(program.verbosity, 2) 53 program = unittest2.main(exit=False, 57 self.assertTrue(hasattr(program, 'result')) 111 self.program = InitialisableProgram() 112 self.program.createTests = lambda: None 118 program = self.program 120 program [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/ |
H A D | sm4_analyze.cpp | 33 bool sm4_link_cf_insns(sm4_program& program) argument 35 if(program.cf_insn_linked.size()) 39 cf_insn_linked.resize(program.insns.size()); 42 for(unsigned insn_num = 0; insn_num < program.insns.size(); ++insn_num) 45 switch(program.insns[insn_num]->opcode) 53 check(program.insns[v]->opcode == SM4_OPCODE_LOOP); 67 if(program.insns[insn_num]->opcode == SM4_OPCODE_ELSE) 68 check(program.insns[v]->opcode == SM4_OPCODE_IF); 70 check(program.insns[v]->opcode == SM4_OPCODE_SWITCH || program 94 sm4_find_labels(sm4_program& program) argument [all...] |
/external/libchrome/sandbox/linux/bpf_dsl/ |
H A D | dump_bpf.h | 15 // PrintProgram writes |program| in a human-readable format to stderr. 16 static void PrintProgram(const CodeGen::Program& program); 18 // StringPrintProgram writes |program| in a human-readable format to 20 static std::string StringPrintProgram(const CodeGen::Program& program);
|
/external/llvm/utils/ |
H A 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 appear [all...] |
/external/skia/tools/ |
H A D | find_run_binary.py | 15 """Runs a program from the command line and returns stdout. 22 stdout from the program, as a single string. 25 Exception: the program exited with a nonzero return code. 36 def find_path_to_program(program): 37 """Returns path to an existing program binary. 40 program: Basename of the program to find (e.g., 'render_pictures'). 43 Absolute path to the program binary, as a string. 46 Exception: unable to find the program binary. 50 possible_paths = [os.path.join(trunk_path, 'out', 'Release', program), [all...] |
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/ |
H A D | GlShader.java | 59 private int program; field in class:GlShader 64 program = GLES20.glCreateProgram(); 65 if (program == 0) { 66 throw new RuntimeException("Could not create program"); 68 GLES20.glAttachShader(program, vertexShader); 69 GLES20.glAttachShader(program, fragmentShader); 70 GLES20.glLinkProgram(program); 74 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0); 76 Logging.e(TAG, "Could not link program: " + 77 GLES20.glGetProgramInfoLog(program)); [all...] |
/external/autotest/client/deps/glbench/src/ |
H A D | varyingsandddxytest.cc | 125 GLuint program = local 128 int attribute_index = glGetAttribLocation(program, "c"); 133 return program; 152 GLuint program = local 156 int attribute_index = glGetAttribLocation(program, "c"); 161 return program; 183 GLuint program = VaryingsShaderProgram(1, vertex_buffer); local 186 glDeleteProgram(program); 188 program = VaryingsShaderProgram(2, vertex_buffer); 191 glDeleteProgram(program); [all...] |
/external/deqp/framework/opengl/ |
H A D | gluProgramInterfaceQuery.cpp | 33 deUint32 getProgramResourceUint (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam) argument 36 gl.getProgramResourceiv(program, programInterface, index, 1, &queryParam, 1, DE_NULL, (int*)&value); 41 void getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::string& dst) argument 43 const int length = getProgramResourceInt(gl, program, programInterface, index, GL_NAME_LENGTH); 48 gl.getProgramResourceName(program, programInterface, index, (int)buf.size(), DE_NULL, &buf[0]); 61 static void getProgramInterfaceActiveVariables (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::vector<int>& activeVariables) argument 63 const int numActiveVariables = getProgramResourceInt(gl, program, programInterface, index, GL_NUM_ACTIVE_VARIABLES); 69 gl.getProgramResourceiv(program, programInterface, index, 1, &queryParam, (int)activeVariables.size(), DE_NULL, &activeVariables[0]); 74 void getProgramInterfaceBlockInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceBlockInfo& info) argument 77 info.bufferBinding = getProgramResourceUint(gl, program, programInterfac 86 getProgramInterfaceVariableInfo(const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceVariableInfo& info) argument [all...] |
/external/iptables/utils/ |
H A D | nfbpf_compile.c | 2 * BPF program compilation tool 17 struct bpf_program program; local 22 fprintf(stderr, "Usage: %s [link] '<program>'\n\n" 39 if (pcap_compile_nopcap(65535, dlt, &program, argv[argc - 1], 1, 45 printf("%d,", program.bf_len); 46 ins = program.bf_insns; 47 for (i = 0; i < program.bf_len-1; ++ins, ++i) 52 pcap_freecode(&program);
|
/external/deqp/framework/opengl/simplereference/ |
H A D | sglrContextUtil.hpp | 34 void drawQuad (sglr::Context& ctx, deUint32 program, const tcu::Vec3& p0, const tcu::Vec3& p1); 36 void drawQuadWithVaoBuffers (sglr::Context& ctx, deUint32 program, const tcu::Vec3& p0, const tcu::Vec3& p1); 37 void drawQuadWithClientPointers (sglr::Context& ctx, deUint32 program, const tcu::Vec3& p0, const tcu::Vec3& p1);
|