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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/services/surfaceflinger/
Android.mk 27 RenderEngine/Program.cpp \
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_compiler_util.c 529 * program.
540 for (inst = c->Program.Instructions.Next;
541 inst != &c->Program.Instructions;
711 c->Program.Constants.Constants[index].Type == RC_CONSTANT_IMMEDIATE;
726 if(swz >= 4 || index >= c->Program.Constants.Count ){
734 c->Program.Constants.Constants[index].u.Immediate[swz];
radeon_pair_regalloc.c 34 #include "program/register_allocate.h"
552 /* Get list of program variables */
599 for (inst = s->C->Program.Instructions.Next;
600 inst != &s->C->Program.Instructions;
748 for (struct rc_instruction *inst = s.C->Program.Instructions.Next;
749 inst != &s.C->Program.Instructions;
radeon_pair_translate.c 335 rc_error(&c->Base, "Fragment program does not support signed Saturate.\n");
342 rc_error(&c->Base, "Fragment program does not support relative addressing "
358 for(struct rc_instruction * inst = c->Base.Program.Instructions.Next;
359 inst != &c->Base.Program.Instructions;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler_util.c 529 * program.
540 for (inst = c->Program.Instructions.Next;
541 inst != &c->Program.Instructions;
711 c->Program.Constants.Constants[index].Type == RC_CONSTANT_IMMEDIATE;
726 if(swz >= 4 || index >= c->Program.Constants.Count ){
734 c->Program.Constants.Constants[index].u.Immediate[swz];
radeon_pair_regalloc.c 34 #include "program/register_allocate.h"
552 /* Get list of program variables */
599 for (inst = s->C->Program.Instructions.Next;
600 inst != &s->C->Program.Instructions;
748 for (struct rc_instruction *inst = s.C->Program.Instructions.Next;
749 inst != &s.C->Program.Instructions;
radeon_pair_translate.c 335 rc_error(&c->Base, "Fragment program does not support signed Saturate.\n");
342 rc_error(&c->Base, "Fragment program does not support relative addressing "
358 for(struct rc_instruction * inst = c->Base.Program.Instructions.Next;
359 inst != &c->Base.Program.Instructions;
  /frameworks/base/libs/hwui/
SkiaShader.cpp 89 void SkiaShader::setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
144 void SkiaBitmapShader::setupProgram(Program* program, const mat4& modelView,
164 glUniform1i(program->getUniform("bitmapSampler"), textureSlot);
165 glUniformMatrix4fv(program->getUniform("textureTransform"), 1,
167 glUniform2f(program->getUniform("textureDimension"), 1.0f / width, 1.0f / height);
230 void SkiaLinearGradientShader::setupProgram(Program* program, const mat4& modelView,
240 glUniform1i(program->getUniform("gradientSampler"), textureSlot)
    [all...]
  /frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
RsRenderStatesRS.java 24 import android.renderscript.Program.TextureType;
171 // Use stock the stock program store object
175 // Create a custom program store
248 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
264 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
279 pfbCustom.addTexture(Program.TextureType.TEXTURE_CUBE);
285 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
  /frameworks/ex/carousel/java/com/android/ex/carousel/
CarouselRS.java 24 import android.renderscript.Program.TextureType;
373 // Single texture program
379 pfbSingle.addTexture(Program.TextureType.TEXTURE_2D);
385 // Single texture program, plus blending
393 pfbSingleBlend.addTexture(Program.TextureType.TEXTURE_2D);
402 // Multi texture program
408 pfbMulti.addTexture(Program.TextureType.TEXTURE_2D);
409 pfbMulti.addTexture(Program.TextureType.TEXTURE_2D);
419 // Multi texture program, plus blending
425 pfbMultiBlend.addTexture(Program.TextureType.TEXTURE_2D)
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
codegen_unittest.cc 19 typedef SandboxBPF::Program Program;
47 // Create the most basic valid BPF program:
55 // Create a program with a single branch:
68 // Create a program with a single branch:
84 // Creates a basic BPF program that we'll use to test some of the code:
163 Instruction *program, int) {
176 // well-formed BPF program.
177 // Perform a depth-first traversal of the BPF program an verify that all
180 // instructions in the program
    [all...]
codegen.cc 51 void CodeGen::PrintProgram(const SandboxBPF::Program& program) {
52 for (SandboxBPF::Program::const_iterator iter = program.begin();
53 iter != program.end();
55 int ip = (int)(iter - program.begin());
171 SANDBOX_DIE("ErrorCode is not suitable for returning from a BPF program");
242 // set ultimately converges on all instructions in the program.
273 "the end of the BPF program");
457 // A well-formed BPF program can't have any cycles, so we kno
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_target.cpp 157 INFO("program binary (%u bytes)", codeSize);
172 CodeEmitter::prepareEmission(Program *prog)
300 Program::emitSymbolTable(struct nv50_ir_prog_info *info)
321 Program::emitBinary(struct nv50_ir_prog_info *info)
nv50_ir_from_sm4.cpp 42 Converter(Program *, struct nv50_ir_prog_info *);
160 Program *prog;
750 if (prog->getType() == Program::TYPE_FRAGMENT) {
794 if (prog->getType() == Program::TYPE_TESSELLATION_EVAL)
833 if (prog->getType() == Program::TYPE_TESSELLATION_EVAL)
899 assert(prog->getType() != Program::TYPE_FRAGMENT);
939 if (prog->getType() == Program::TYPE_FRAGMENT)
    [all...]
nv50_ir_target_nv50.cpp 307 if (ld->bb->getProgram()->getType() != Program::TYPE_GEOMETRY)
347 Program::Type pt = ld->bb->getProgram()->getType();
350 if (pt == Program::TYPE_COMPUTE)
352 if (pt == Program::TYPE_GEOMETRY) {
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target.cpp 157 INFO("program binary (%u bytes)", codeSize);
172 CodeEmitter::prepareEmission(Program *prog)
300 Program::emitSymbolTable(struct nv50_ir_prog_info *info)
321 Program::emitBinary(struct nv50_ir_prog_info *info)
nv50_ir_from_sm4.cpp 42 Converter(Program *, struct nv50_ir_prog_info *);
160 Program *prog;
750 if (prog->getType() == Program::TYPE_FRAGMENT) {
794 if (prog->getType() == Program::TYPE_TESSELLATION_EVAL)
833 if (prog->getType() == Program::TYPE_TESSELLATION_EVAL)
899 assert(prog->getType() != Program::TYPE_FRAGMENT);
939 if (prog->getType() == Program::TYPE_FRAGMENT)
    [all...]
nv50_ir_target_nv50.cpp 307 if (ld->bb->getProgram()->getType() != Program::TYPE_GEOMETRY)
347 Program::Type pt = ld->bb->getProgram()->getType();
350 if (pt == Program::TYPE_COMPUTE)
352 if (pt == Program::TYPE_GEOMETRY) {
  /external/chromium_org/chrome/installer/mini_installer/
configuration_test.cc 38 TEST(MiniInstallerConfigurationTest, Program) {
39 EXPECT_TRUE(NULL == mini_installer::Configuration().program());
41 TestConfiguration(L"spam.exe").program());
43 TestConfiguration(L"spam.exe --with args").program());
45 TestConfiguration(L"c:\\blaz\\spam.exe --with args").program());
  /external/ppp/pppd/plugins/radius/etc/
dictionary 103 ATTRIBUTE Exec-Program 1038 string
104 ATTRIBUTE Exec-Program-Wait 1039 string
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaScene.java 38 import android.renderscript.Program.TextureType;
  /frameworks/rs/
rsProgramFragment.cpp 27 : Program(rsc, shaderText, shaderLength, params, paramLength) {
43 ALOGE("Attempting to set fixed function emulation color on user program");
44 rsc->setError(RS_ERROR_BAD_SHADER, "Cannot set fixed function emulation color on user program");
  /external/ceres-solver/internal/ceres/
gradient_checking_cost_function_test.cc 41 #include "ceres/program.h"
378 const Program& program = problem_impl.program(); local
379 const Program& gradient_checking_program =
380 gradient_checking_problem_impl->program();
385 // Program. This is not exepected to be the case and writing code to
388 for (int i = 0; i < program.parameter_blocks().size(); ++i) {
390 program.parameter_blocks()[i],
394 for (int i = 0; i < program.residual_blocks().size(); ++i)
    [all...]
  /external/chromium_org/tools/dromaeo_benchmark_runner/
dromaeo_benchmark_runner.py 31 -b "C:\Program Files (x86)\Safari\safari.exe"
32 -b "C:\Program Files (x86)\Opera 10.50 pre-alpha\opera.exe" -n 1
  /external/llvm/include/llvm/Support/
GraphWriter.h 54 GraphProgram::Name program = GraphProgram::DOT);
348 GraphProgram::Name Program = GraphProgram::DOT) {
354 DisplayGraph(Filename, true, Program);

Completed in 510 milliseconds

1 2 3 4 5 6 7 8 91011>>