Searched refs:program (Results 1 - 25 of 822) sorted by relevance

1234567891011>>

/external/valgrind/none/tests/
H A Dallexec32.stdout.exp2 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 Dallexec64.stdout.exp2 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 Dcmdline3.stderr.exp1 valgrind: no program specified
H A Dcmdline5.stderr.exp1 valgrind: ./no-such-program-my-friend: No such file or directory
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_f_p_g_m.py9 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.py9 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 Darbprogparse.c34 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)
84 /* Error in the program
68 _mesa_parse_arb_fragment_program(struct gl_context* ctx, GLenum target, const GLvoid *str, GLsizei len, struct gl_program *program) argument
161 _mesa_parse_arb_vertex_program(struct gl_context *ctx, GLenum target, const GLvoid *str, GLsizei len, struct gl_program *program) argument
[all...]
H A Darbprogparse.h37 struct gl_program *program);
42 struct gl_program *program);
/external/python/cpython2/Lib/unittest/test/
H A 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
[all...]
/external/libchrome/sandbox/linux/bpf_dsl/
H A Ddump_bpf.h15 // 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 Dcheck-each-file9 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/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_debug.h36 extern void i915_disassemble_program(const unsigned *program, unsigned sz);
H A Di915_debug_fp.c242 print_arith_op(GLuint opcode, const GLuint * program) argument
245 print_dest_reg(program[0]);
246 if (program[0] & A0_DEST_SATURATE)
254 print_src_reg(GET_SRC0_REG(program[0], program[1]));
261 print_src_reg(GET_SRC1_REG(program[1], program[2]));
268 print_src_reg(GET_SRC2_REG(program[2]));
275 print_tex_op(GLuint opcode, const GLuint * program) argument
277 print_dest_reg(program[
291 print_dcl_op(GLuint opcode, const GLuint * program) argument
300 i915_disassemble_program(const GLuint * program, GLuint sz) argument
[all...]
/external/pdfium/testing/libfuzzer/
H A Dpdf_fm2js_fuzzer.cc20 CXFA_FMProgram program(input.AsStringC());
21 if (program.ParseProgram())
25 program.TranslateProgram(js);
/external/swiftshader/third_party/LLVM/utils/
H A Dcheck-each-file9 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 Dfind_run_binary.py15 """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 DGlShader.java59 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 Dvaryingsandddxytest.cc125 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...]
H A Dattributefetchtest.cc76 GLuint program = local
82 int attribute_index = glGetAttribLocation(program, attribute);
88 return program;
119 GLuint program = AttributeFetchShaderProgram(1, vertex_buffers); local
121 glDeleteProgram(program);
123 program = AttributeFetchShaderProgram(2, vertex_buffers);
126 glDeleteProgram(program);
128 program = AttributeFetchShaderProgram(4, vertex_buffers);
131 glDeleteProgram(program);
133 program
[all...]
/external/deqp/framework/opengl/
H A DgluProgramInterfaceQuery.cpp33 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 Dnfbpf_compile.c2 * 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/mesa3d/src/mesa/main/
H A Dprogram_resource.h32 _mesa_GetProgramInterfaceiv(GLuint program, GLenum programInterface,
36 _mesa_GetProgramResourceIndex(GLuint program, GLenum programInterface,
40 _mesa_GetProgramResourceName(GLuint program, GLenum programInterface,
45 _mesa_GetProgramResourceiv(GLuint program, GLenum programInterface,
51 _mesa_GetProgramResourceLocation(GLuint program, GLenum programInterface,
55 _mesa_GetProgramResourceLocationIndex(GLuint program, GLenum programInterface,
/external/deqp/framework/opengl/simplereference/
H A DsglrContextUtil.hpp34 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);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_debug_private.h43 const unsigned *program, unsigned sz);
/external/skia/src/gpu/gl/
H A DGrGLVaryingHandler.h17 GrGLVaryingHandler(GrGLSLProgramBuilder* program) argument
18 : INHERITED(program),

Completed in 854 milliseconds

1234567891011>>