HomeSort by relevance Sort by last modified time
    Searched refs:Program (Results 126 - 150 of 450) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r3xx_fragprog.c 56 for (rci = c->Base.Program.Instructions.Next; rci != &c->Base.Program.Instructions; rci = rci->Next) {
148 rc_constants_copy(&c->code->constants, &c->Base.Program.Constants);
r3xx_vertprog.c 294 * offending program in Sauerbraten up to the offending instruction
372 for(rci = compiler->Base.Program.Instructions.Next; rci != &compiler->Base.Program.Instructions; rci = rci->Next) {
384 rc_error(&compiler->Base, "Vertex program does not support the Saturate "
390 rc_error(&compiler->Base, "Vertex program has too many instructions\n");
567 for(inst = compiler->Base.Program.Instructions.Next; inst != &compiler->Base.Program.Instructions; inst = inst->Next) {
590 for(inst = compiler->Base.Program.Instructions.Next; inst != &compiler->Base.Program.Instructions; inst = inst->Next) {
598 ptr != &compiler->Base.Program.Instructions
    [all...]
radeon_emulate_loops.c 63 /* +1 because the program already has one iteration of the loop. */
219 for(inst = c->Program.Instructions.Next; inst != loop->BeginLoop;
342 if (ptr == &c->Program.Instructions) {
353 for(ptr = ptr->Next; ptr != &c->Program.Instructions;
363 if (ptr == &c->Program.Instructions) {
479 for(ptr = s->C->Program.Instructions.Next;
480 ptr != &s->C->Program.Instructions; ptr = ptr->Next) {
494 for(inst = c->Program.Instructions.Next;
495 inst != &c->Program.Instructions; inst = inst->Next) {
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target.h 80 void prepareEmission(Program *);
128 virtual CodeEmitter *getCodeEmitter(Program::Type) = 0;
136 virtual bool runLegalizePass(Program *, CGStage stage) const = 0;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r3xx_fragprog.c 56 for (rci = c->Base.Program.Instructions.Next; rci != &c->Base.Program.Instructions; rci = rci->Next) {
148 rc_constants_copy(&c->code->constants, &c->Base.Program.Constants);
r3xx_vertprog.c 294 * offending program in Sauerbraten up to the offending instruction
372 for(rci = compiler->Base.Program.Instructions.Next; rci != &compiler->Base.Program.Instructions; rci = rci->Next) {
384 rc_error(&compiler->Base, "Vertex program does not support the Saturate "
390 rc_error(&compiler->Base, "Vertex program has too many instructions\n");
567 for(inst = compiler->Base.Program.Instructions.Next; inst != &compiler->Base.Program.Instructions; inst = inst->Next) {
590 for(inst = compiler->Base.Program.Instructions.Next; inst != &compiler->Base.Program.Instructions; inst = inst->Next) {
598 ptr != &compiler->Base.Program.Instructions
    [all...]
radeon_emulate_loops.c 63 /* +1 because the program already has one iteration of the loop. */
219 for(inst = c->Program.Instructions.Next; inst != loop->BeginLoop;
342 if (ptr == &c->Program.Instructions) {
353 for(ptr = ptr->Next; ptr != &c->Program.Instructions;
363 if (ptr == &c->Program.Instructions) {
479 for(ptr = s->C->Program.Instructions.Next;
480 ptr != &s->C->Program.Instructions; ptr = ptr->Next) {
494 for(inst = c->Program.Instructions.Next;
495 inst != &c->Program.Instructions; inst = inst->Next) {
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
GrainFilter.java 27 import android.filterfw.core.Program;
46 private Program mGrainProgram;
47 private Program mNoiseProgram;
173 // Create program if not created already
BitmapOverlayFilter.java 27 import android.filterfw.core.Program;
46 private Program mProgram;
109 // Create program if not created already
BlackWhiteFilter.java 27 import android.filterfw.core.Program;
45 private Program mProgram;
144 // Create program if not created already
CropFilter.java 29 import android.filterfw.core.Program;
43 private Program mProgram;
108 throw new RuntimeException("Could not create a program for crop filter " + this + "!");
131 // Set the program parameters
CropRectFilter.java 28 import android.filterfw.core.Program;
53 private Program mProgram;
104 // Create program if not created already
DocumentaryFilter.java 27 import android.filterfw.core.Program;
39 private Program mProgram;
120 // Create program if not created already
DuotoneFilter.java 27 import android.filterfw.core.Program;
43 private Program mProgram;
98 // Create program if not created already
FillLightFilter.java 28 import android.filterfw.core.Program;
42 private Program mProgram;
106 // Create program if not created already
FlipFilter.java 28 import android.filterfw.core.Program;
46 private Program mProgram;
93 // Create program if not created already
ImageSlicer.java 27 import android.filterfw.core.Program;
47 private Program mProgram;
105 // Create the program if not created already
ImageStitcher.java 27 import android.filterfw.core.Program;
44 private Program mProgram;
108 // Create the program if not created already
LomoishFilter.java 27 import android.filterfw.core.Program;
39 private Program mProgram;
184 // Create program if not created already
ResizeFilter.java 30 import android.filterfw.core.Program;
50 private Program mProgram;
85 throw new RuntimeException("ResizeFilter could not create suitable program!");
SharpenFilter.java 27 import android.filterfw.core.Program;
41 private Program mProgram;
112 // Create program if not created already
TintFilter.java 27 import android.filterfw.core.Program;
40 private Program mProgram;
99 // Create program if not created already
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 1 //===- ExecutionDriver.cpp - Allow execution of LLVM program --------------===//
10 // This file contains code used to execute the program utilizing one of the
72 cl::desc("Specify the path to the \"safe\" backend program"),
106 // program being debugged.
108 InputArgv("args", cl::Positional, cl::desc("<program arguments>..."),
267 // Emit the program to a bitcode file...
271 OutputPrefix + "-test-program-%%%%%%%.bc", BitcodeFD, BitcodeFile);
286 // Actually compile the program!
291 /// executeProgram - This method runs "Program", capturing the output of the
292 /// program to a file, returning the filename of the file. A recommende
    [all...]
  /external/llvm/utils/
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...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeProgram.java 21 import android.filterfw.core.Program;
26 public class NativeProgram extends Program {
44 "required for native program!");
50 throw new RuntimeException("Could not find native program function name " +

Completed in 264 milliseconds

1 2 3 4 56 7 8 91011>>