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

1 2 3 4 5 6 7 8 91011>>

  /external/ceres-solver/internal/ceres/
solver_impl.cc 55 #include "ceres/program.h"
69 Program* program,
75 minimizer_options.is_constrained = program->IsBoundsConstrained();
79 Vector parameters(program->NumParameters());
83 program->ParameterBlocksToStateVector(parameters.data());
92 StateUpdatingCallback updating_callback(program, parameters.data());
129 program->StateVectorToParameterBlocks(parameters.data());
130 program->CopyParameterBlockStateToUserState();
139 Program* program
610 const Program& program = problem_impl->program(); local
    [all...]
  /frameworks/base/libs/hwui/
Program.h 97 // Program description
101 * Describe the features required for a given program. The features
213 * the fragment shader. When this method returns true, the program should
223 * the fragment shader. When this method returns true, the program should
233 * Computes the unique key identifying this program.
281 * Logs the specified message followed by the key identifying this program.
307 * A program holds a vertex and a fragment shader. It offers several utility
310 class Program {
318 * Creates a new program with the specified vertex and fragment
321 Program(const ProgramDescription& description, const char* vertex, const char* fragment)
    [all...]
ProgramCache.cpp 425 PROGRAM_LOGD("Clearing program cache");
434 Program* ProgramCache::get(const ProgramDescription& description) {
437 // program for A8, unmodulated, texture w/o shader (black text/path textures) is equivalent
438 // to standard texture program (bitmaps, patches). Consider them equivalent.
443 Program* program = NULL; local
445 description.log("Could not find program");
446 program = generateProgram(description, key);
447 mCache.add(key, program);
449 program = mCache.valueAt(index)
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
AutoFixFilter.java 24 import android.filterfw.core.Program;
148 private Program mShaderProgram;
149 private Program mNativeProgram;
242 // Create program if not created already
  /frameworks/base/rs/java/android/renderscript/
Program.java 31 * Program is a base class for all the objects that modify
35 public class Program extends BaseObj {
43 * TextureType specifies what textures are attached to Program
77 Program(long id, RenderScript rs) {
82 * Program object can have zero or more constant allocations
91 * Returns the type of the constant buffer used in the program
105 * Returns the number of textures used in this program object
139 * program
142 * @param slot index within the program's list of constant
158 * Binds a texture to be used in the program
    [all...]
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
FillTest.java 113 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
119 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
124 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
  /external/deqp/modules/glshared/
glsLongStressCase.cpp 2 * drawElements Quality Program OpenGL (ES) Module
680 class Program
683 Program (void);
684 ~Program (void);
695 Program (const Program&); // Not allowed.
696 Program& operator= (const Program&); // Not allowed.
708 Program::Program (void
1297 Program& program = m_programs->get(programName); member in namespace:deqp::gls::LongStressCaseInternal
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
state.c 45 #include "program/program.h"
46 #include "program/prog_parameter.h"
77 * program is enabled AND valid. Similarly for ATI fragment shaders.
98 * we're generating a fragment program from fixed-function texture state.
101 * or fragment program is being used.
126 * program (and vice versa) here, but in practice that shouldn't ever
137 gl_fragment_program(fsProg->_LinkedShaders[MESA_SHADER_FRAGMENT]->Program));
142 /* Use user-defined fragment program */
152 /* Use fragment program generated from fixed-function state *
    [all...]
  /external/mesa3d/src/mesa/main/
state.c 45 #include "program/program.h"
46 #include "program/prog_parameter.h"
77 * program is enabled AND valid. Similarly for ATI fragment shaders.
98 * we're generating a fragment program from fixed-function texture state.
101 * or fragment program is being used.
126 * program (and vice versa) here, but in practice that shouldn't ever
137 gl_fragment_program(fsProg->_LinkedShaders[MESA_SHADER_FRAGMENT]->Program));
142 /* Use user-defined fragment program */
152 /* Use fragment program generated from fixed-function state *
    [all...]
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 73 OrigProgram = BD.Program;
75 BD.Program = ParseInputFile(PrefixOutput, BD.getContext());
76 if (BD.Program == nullptr) {
94 delete BD.Program;
95 BD.Program = OrigProgram;
102 /// variable's initializer and seeing if the program still crashes. If it
103 /// does, then we keep that program and try again.
130 // Clone the program to try hacking it apart...
156 // Try running the hacked up program...
172 /// seeing if the program still crashes. If it does, then keep the newer
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_lowering_nv50.cpp 133 Program *prog = fn->getProgram();
138 // this is actually per-program, but we can do it all on visiting main()
248 NV50LegalizeSSA(Program *);
266 NV50LegalizeSSA::NV50LegalizeSSA(Program *prog)
271 (prog->getType() == Program::TYPE_GEOMETRY ||
272 prog->getType() == Program::TYPE_VERTEX))
514 NV50LoweringPreSSA(Program *);
552 NV50LoweringPreSSA::NV50LoweringPreSSA(Program *prog) :
563 if (prog->getType() == Program::TYPE_COMPUTE) {
867 if (prog->getType() == Program::TYPE_COMPUTE)
    [all...]
  /external/chromium_org/third_party/mesa/src/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...]
  /external/lldb/test/unittest2/test/
test_break.py 197 class Program(unittest2.TestProgram):
207 p = Program(False)
220 p = Program(True)
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_lowering_nv50.cpp 133 Program *prog = fn->getProgram();
138 // this is actually per-program, but we can do it all on visiting main()
248 NV50LegalizeSSA(Program *);
266 NV50LegalizeSSA::NV50LegalizeSSA(Program *prog)
271 (prog->getType() == Program::TYPE_GEOMETRY ||
272 prog->getType() == Program::TYPE_VERTEX))
514 NV50LoweringPreSSA(Program *);
552 NV50LoweringPreSSA::NV50LoweringPreSSA(Program *prog) :
563 if (prog->getType() == Program::TYPE_COMPUTE) {
867 if (prog->getType() == Program::TYPE_COMPUTE)
    [all...]
  /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/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/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);
  /external/deqp/modules/egl/
teglRenderTests.cpp 2 * drawElements Quality Program EGL Module
404 rr::Program(static_cast<const rr::VertexShader*>(&shader), static_cast<const rr::FragmentShader*>(&shader)),
415 class Program
418 Program (void) {}
419 virtual ~Program (void) {}
424 typedef de::SharedPtr<Program> ProgramSp;
465 deUint32 program = glCreateProgram(); local
466 glAttachShader(program, vertexShader);
467 glAttachShader(program, fragmentShader);
468 glLinkProgram(program);
    [all...]

Completed in 906 milliseconds

1 2 3 4 5 6 7 8 91011>>