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

1 2 3 4 5 6 7 891011>>

  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_lowering_nvc0.cpp 124 NVC0LegalizePostRA(const Program *);
164 NVC0LegalizePostRA::NVC0LegalizePostRA(const Program *prog)
582 NVC0LoweringPass(Program *);
614 NVC0LoweringPass::NVC0LoweringPass(Program *prog) : targ(prog->getTarget())
622 if (prog->getType() == Program::TYPE_GEOMETRY) {
904 assert(prog->getType() == Program::TYPE_FRAGMENT);
918 assert(prog->getType() == Program::TYPE_TESSELLATION_EVAL);
922 if (prog->getType() == Program::TYPE_TESSELLATION_EVAL)
990 if (prog->getType() == Program::TYPE_FRAGMENT) {
1004 if (prog->getType() == Program::TYPE_GEOMETRY)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_break.py 210 class Program(unittest.TestProgram):
220 p = Program(False)
233 p = Program(True)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_break.py 210 class Program(unittest.TestProgram):
220 p = Program(False)
233 p = Program(True)
  /external/chromium_org/sandbox/linux/seccomp-bpf/
bpf_tests.h 103 sandbox::SandboxBPF::Program* program = local
105 delete program;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_compiler.h 46 struct rc_program Program;
147 int dump; /* Dump the program if Debug == 1? */
radeon_dataflow_deadcode.c 230 for(struct rc_instruction * inst = c->Program.Instructions.Prev;
231 inst != &c->Program.Instructions;
313 for(struct rc_instruction * inst = c->Program.Instructions.Next;
314 inst != &c->Program.Instructions;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 46 struct rc_program Program;
147 int dump; /* Dump the program if Debug == 1? */
radeon_dataflow_deadcode.c 230 for(struct rc_instruction * inst = c->Program.Instructions.Prev;
231 inst != &c->Program.Instructions;
313 for(struct rc_instruction * inst = c->Program.Instructions.Next;
314 inst != &c->Program.Instructions;
  /frameworks/base/libs/hwui/
ProgramCache.cpp 405 PROGRAM_LOGD("Clearing program cache");
414 Program* ProgramCache::get(const ProgramDescription& description) {
417 // program for A8, unmodulated, texture w/o shader (black text/path textures) is equivalent
418 // to standard texture program (bitmaps, patches). Consider them equivalent.
423 Program* program = NULL; local
425 description.log("Could not find program");
426 program = generateProgram(description, key);
427 mCache.add(key, program);
429 program = mCache.valueAt(index)
    [all...]
Android.mk 36 Program.cpp \
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DrawRectFilter.java 28 import android.filterfw.core.Program;
122 // Set the program variables
FixedRotationFilter.java 25 import android.filterfw.core.Program;
68 // Create program if not created already
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
TestAppLoadingScreen.java 34 import android.renderscript.Program.TextureType;
  /frameworks/rs/driver/
rsdProgram.cpp 47 static void SyncProgramConstants(const Context *rsc, const Program *p) {
  /packages/wallpapers/Galaxy4/src/com/android/galaxy4/
GalaxyRS.java 21 import android.renderscript.Program;
226 builder.addTexture(Program.TextureType.TEXTURE_2D);
241 builder.addTexture(Program.TextureType.TEXTURE_2D);
242 builder.addTexture(Program.TextureType.TEXTURE_2D);
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/glowing/
GlowingScene.cpp 21 #include <graphics/Program.h>
47 // Main Program
60 // Blur Program
72 mBlurProgram = new Program(programId);
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_1.cc 244 Program* program = GetProgram(client_program_id_); local
245 ASSERT_TRUE(program != NULL);
254 program->Link(NULL, NULL, NULL, Program::kCountOnlyStaticallyUsed,
vertex_attrib_manager.cc 167 Program* current_program,
178 // program then check that they have enough elements to handle the draw call.
179 // If they are not used by the current program check that they have a buffer
184 const Program::VertexAttrib* attrib_info =
189 // This attrib is used in the current program.
234 // This attrib is not used in the current program.
  /external/chromium_org/third_party/angle/src/libGLESv2/
ResourceManager.cpp 14 #include "libGLESv2/Program.h"
78 // Returns an unused shader/program name
96 // Returns an unused program/shader name
101 mProgramMap[handle] = new Program(mRenderer, this, handle);
157 void ResourceManager::deleteProgram(GLuint program)
159 ProgramMap::iterator programObject = mProgramMap.find(program);
244 Program *ResourceManager::getProgram(unsigned int handle)
246 ProgramMap::iterator program = mProgramMap.find(handle); local
248 if (program == mProgramMap.end())
254 return program->second
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/
SConscript 284 program_lex = env.CFile('program/lex.yy.c', 'program/program_lexer.l')
285 program_parse = env.CFile('program/program_parse.tab.c',
286 'program/program_parse.y')
288 # Make program/program_parse.tab.h reacheable from the include path
292 'program/arbprogparse.c',
293 'program/hash_table.c',
294 'program/ir_to_mesa.cpp',
295 'program/nvfragparse.c',
296 'program/nvvertparse.c'
    [all...]
  /external/llvm/lib/Support/
Android.mk 48 Program.cpp \
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 28 #include "llvm/Support/Program.h"
52 /// writeProgramToFile - This writes the current "Program" to the named bitcode
81 /// EmitProgressBitcode - This function is used to output the current Program
114 /// runPasses - Run the specified passes on Program, outputting a bitcode file
122 bool BugDriver::runPasses(Module *Program,
152 WriteBitcodeToFile(Program, InFile.os());
260 << " on the input program!\n";
  /external/mesa3d/src/mesa/
SConscript 284 program_lex = env.CFile('program/lex.yy.c', 'program/program_lexer.l')
285 program_parse = env.CFile('program/program_parse.tab.c',
286 'program/program_parse.y')
288 # Make program/program_parse.tab.h reacheable from the include path
292 'program/arbprogparse.c',
293 'program/hash_table.c',
294 'program/ir_to_mesa.cpp',
295 'program/nvfragparse.c',
296 'program/nvvertparse.c'
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ShaderProgram.java 22 import android.filterfw.core.Program;
31 public class ShaderProgram extends Program {
73 ShaderProgram program = nativeCreateIdentity(getGLEnvironment(context)); local
74 program.setTimer();
75 return program;
234 throw new RuntimeException("Could not prepare shader-program for drawing!");
  /frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
ShadersTestRS.java 26 import android.renderscript.Program;
118 fs.addTexture(Program.TextureType.TEXTURE_2D);

Completed in 564 milliseconds

1 2 3 4 5 6 7 891011>>