/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_pair_schedule.c | [all...] |
r500_fragprog_emit.c | 637 for(struct rc_instruction * inst = compiler->Base.Program.Instructions.Next; 638 inst != &compiler->Base.Program.Instructions && !compiler->Base.Error; 666 * when most of the fragment program logic is leading to a KIL */
|
/external/mesa3d/src/mesa/main/ |
shaderapi.c | 49 #include "program/program.h" 50 #include "program/prog_parameter.h" 206 * Attach shader to a shader program. 209 attach_shader(struct gl_context *ctx, GLuint program, GLuint shader) 215 shProg = _mesa_lookup_shader_program_err(ctx, program, "glAttachShader"); 227 /* The shader is already attched to this program. The 301 * texture objects (and buffer objects, etc). Shader/program 341 detach_shader(struct gl_context *ctx, GLuint program, GLuint shader) 347 shProg = _mesa_lookup_shader_program_err(ctx, program, "glDetachShader") 1673 GLuint program = 0; local [all...] |
texstate.c | 502 vprog = ctx->Shader.CurrentVertexProgram->_LinkedShaders[MESA_SHADER_VERTEX]->Program; 512 fprog = ctx->Shader.CurrentFragmentProgram->_LinkedShaders[MESA_SHADER_FRAGMENT]->Program; 543 * by a fragment program/program. When multiple flags are set, we'll 554 /* fixed-function fragment program */ 569 * for texturing. If we're using vert/frag program we're guaranteed
|
/cts/hostsidetests/sustainedperf/dhrystone/ |
Drystone-2.1.sh | 28 XThe Dhrystone benchmark program [1] has become a popular benchmark for 77 Xoutweight the benefits. If I were to write a new benchmark program, I 78 Xwouldn't give it the name "Dhrystone" since this denotes the program 140 Xmakes the program simpler.) However, since the loop check is now part 157 X strcpy (Str_2_Loc, "DHRYSTONE PROGRAM, 3'RD STRING"); 203 X statement. While the program would not be incorrect without this 218 Xnot been changed, to keep the program consistent with the original 222 Xrepresented in the program, and that execution time is dominated by 224 Xcompilers removed too much code in the main part of the program, this 280 X program preparation time (although not as much as compilation in on [all...] |
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
vktPipelineReferenceRenderer.cpp | 168 const rr::Program* const program) 174 , m_program (program)
|
/external/deqp/modules/gles31/functional/ |
es31fSeparateShaderTests.cpp | 2 * drawElements Quality Program OpenGL ES 3.1 Module 84 using glu::Program; 636 Program& getProgram (void) { return m_program; } 640 Program m_program; 749 // Final pipeline has a single program? 912 // Program pipeline wrapper that retains references to component programs. 946 log.writeMessage("// Failed program pipeline:"); 949 log.writeMessage("// Common program for both vertex and fragment stages:"); 954 log.writeMessage("// Vertex stage program:"); 956 log.writeMessage("// Fragment stage program:") [all...] |
/external/libchrome/sandbox/linux/bpf_dsl/ |
bpf_dsl_unittest.cc | 48 // Made up program counter for syscall address. 111 CodeGen::Program program_;
|
codegen_unittest.cc | 128 // RunTest compiles the program and verifies that the output matches 129 // what is expected. It should be called at the end of each program 132 // Compile the program 133 CodeGen::Program program = gen_.Compile(head); local 135 // Walk the program backwards, and compute the hash for each instruction. 136 std::vector<Hash> prog_hashes(program.size()); 137 for (size_t i = program.size(); i > 0; --i) { 138 const sock_filter& insn = program.at(i - 1); 179 // Create the most basic valid BPF program [all...] |
policy_compiler.cc | 103 CodeGen::Program PolicyCompiler::Compile() { 107 // If our BPF program has unsafe traps, enable support for them. 121 // Assemble the BPF filter program. 261 // return from the BPF filter program. 321 // TODO(mdempsky): Compile Unexpected64bitArgument() just per program. 441 // typical program has very few of these.
|
/external/llvm/tools/bugpoint/ |
ExtractFunction.cpp | 1 //===- ExtractFunction.cpp - Extract a function from Program --------------===// 89 Module *Clone = CloneModule(Program).release(); 109 // Remove the instruction from the program.
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_print.cpp | 631 Program::print()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_vs.c | 38 #include "program/prog_print.h" 39 #include "program/prog_parameter.h" 54 * Compute the VUE map for vertex shader program. 179 /* Either we are using fixed function or an ARB vertex program. In 199 const GLuint *program; local 213 c.prog_data.outputs_written = vp->program.Base.OutputsWritten; 214 c.prog_data.inputs_read = vp->program.Base.InputsRead; 235 _mesa_fprint_program_opt(stdout, &c.vp->program.Base, PROG_PRINT_DEBUG, 252 if (c.vp->program.Base.SamplersUsed) 272 /* get the program [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/ |
ant.bat | 95 rem check for ant in Program Files
|
/external/v8/tools/ |
logreader.js | 142 * @param {number} pc Program counter.
|
/frameworks/base/libs/hwui/ |
Android.mk | 82 Program.cpp \
|
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/internal/gcprog/ |
gcprog.go | 11 // Program Format 13 // The GC program encodes a sequence of 0 and 1 bits indicating scalar or pointer words in an object. 14 // The encoding is a simple Lempel-Ziv program, with codes to emit literal bits and to repeat the 51 // Init initializes w to write a new GC program 52 // by calling writeByte for each byte in the program. 77 // End marks the end of the program, writing any remaining bytes. 84 println("gcprog: End wrote program for", index, "bits, but current index is", w.index) 171 // Append emits the given GC program into the current output. 172 // The caller asserts that the program emits n bits (describes n words), 184 // The last byte of the prog terminates the program [all...] |
/prebuilts/go/darwin-x86/src/cmd/internal/gcprog/ |
gcprog.go | 8 // Program Format 10 // The GC program encodes a sequence of 0 and 1 bits indicating scalar or pointer words in an object. 11 // The encoding is a simple Lempel-Ziv program, with codes to emit literal bits and to repeat the 48 // Init initializes w to write a new GC program 49 // by calling writeByte for each byte in the program. 74 // End marks the end of the program, writing any remaining bytes. 81 println("gcprog: End wrote program for", index, "bits, but current index is", w.index) 168 // Append emits the given GC program into the current output. 169 // The caller asserts that the program emits n bits (describes n words), 181 // The last byte of the prog terminates the program [all...] |
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/internal/gcprog/ |
gcprog.go | 11 // Program Format 13 // The GC program encodes a sequence of 0 and 1 bits indicating scalar or pointer words in an object. 14 // The encoding is a simple Lempel-Ziv program, with codes to emit literal bits and to repeat the 51 // Init initializes w to write a new GC program 52 // by calling writeByte for each byte in the program. 77 // End marks the end of the program, writing any remaining bytes. 84 println("gcprog: End wrote program for", index, "bits, but current index is", w.index) 171 // Append emits the given GC program into the current output. 172 // The caller asserts that the program emits n bits (describes n words), 184 // The last byte of the prog terminates the program [all...] |
/prebuilts/go/linux-x86/src/cmd/internal/gcprog/ |
gcprog.go | 8 // Program Format 10 // The GC program encodes a sequence of 0 and 1 bits indicating scalar or pointer words in an object. 11 // The encoding is a simple Lempel-Ziv program, with codes to emit literal bits and to repeat the 48 // Init initializes w to write a new GC program 49 // by calling writeByte for each byte in the program. 74 // End marks the end of the program, writing any remaining bytes. 81 println("gcprog: End wrote program for", index, "bits, but current index is", w.index) 168 // Append emits the given GC program into the current output. 169 // The caller asserts that the program emits n bits (describes n words), 181 // The last byte of the prog terminates the program [all...] |
/external/deqp/modules/gles2/functional/ |
es2fPolygonOffsetTests.cpp | 2 * drawElements Quality Program OpenGL ES 2.0 Module 368 const glu::ShaderProgram program (m_context.getRenderContext(), glu::makeVtxFragSources(s_shaderSourceVertex, s_shaderSourceFragment)); 369 const GLint positionLoc = gl.getAttribLocation(program.getProgram(), "a_position"); 370 const GLint colorLoc = gl.getAttribLocation(program.getProgram(), "a_color"); 372 if (!program.isOk()) 374 log << program; local 382 gl.useProgram (program.getProgram()); 422 PositionColorShader program; local 441 rr::Program(program.getVertexShader(), program.getFragmentShader()) 503 log << program; local 621 log << program; local 685 PositionColorShader program; local 771 log << program; local 884 log << program; local 1001 log << program; local 1123 log << program; local [all...] |
/external/deqp/modules/gles3/functional/ |
es3fPolygonOffsetTests.cpp | 2 * drawElements Quality Program OpenGL ES 3.0 Module 371 const glu::ShaderProgram program (m_context.getRenderContext(), glu::makeVtxFragSources(s_shaderSourceVertex, s_shaderSourceFragment)); 372 const GLint positionLoc = gl.getAttribLocation(program.getProgram(), "a_position"); 373 const GLint colorLoc = gl.getAttribLocation(program.getProgram(), "a_color"); 375 if (!program.isOk()) 377 log << program; local 385 gl.useProgram (program.getProgram()); 425 PositionColorShader program; local 444 rr::Program(program.getVertexShader(), program.getFragmentShader()) 506 log << program; local 624 log << program; local 688 PositionColorShader program; local 774 log << program; local 887 log << program; local 1004 log << program; local 1126 log << program; local [all...] |
/art/tools/dexfuzz/src/dexfuzz/program/ |
CodeTranslator.java | 17 package dexfuzz.program; 50 public MutatableCode codeItemToMutatableCode(Program program, CodeItem codeItem, 55 MutatableCode mutatableCode = new MutatableCode(program);
|
/external/cblas/testing/ |
c_dblat1.f | 0 PROGRAM DCBLAT1 2 * Test program for the DOUBLE PRECISION Level 1 CBLAS. 4 * F06EAF Example Program Text 51 99999 FORMAT (' Real CBLAS Test Program Results',/1X)
|
c_sblat1.f | 0 PROGRAM SCBLAT1 2 * Test program for the REAL Level 1 CBLAS. 4 * F06EAF Example Program Text 51 99999 FORMAT (' Real CBLAS Test Program Results',/1X)
|