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

<<11121314151617181920>>

  /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/ceres-solver/internal/ceres/
compressed_row_jacobian_writer.cc 36 #include "ceres/program.h"
44 const Program* program, CompressedRowSparseMatrix* jacobian) {
46 program->parameter_blocks();
54 program->residual_blocks();
63 const Program* program,
67 program->residual_blocks()[residual_id];
evaluator_test.cc 44 #include "ceres/program.h"
110 Evaluator* CreateEvaluator(Program* program) {
111 // This program is straight from the ProblemImpl, and so has no index/offset
113 program->SetParameterOffsetsAndIndex();
132 return Evaluator::Create(options, program, &error);
242 // Add the parameters in explicit order to force the ordering in the program.
327 // Add the parameters in explicit order to force the ordering in the program.
382 // Add the parameters in explicit order to force the ordering in the program.
450 // Add the parameters in explicit order to force the ordering in the program
598 Program* program = problem.mutable_program(); local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_1.cc 238 Program* program = GetProgram(client_program_id_); local
239 ASSERT_TRUE(program != NULL);
248 program->Link(NULL, NULL, NULL, Program::kCountOnlyStaticallyUsed,
vertex_attrib_manager.cc 164 Program* current_program,
175 // program then check that they have enough elements to handle the draw call.
176 // If they are not used by the current program check that they have a buffer
181 const Program::VertexAttrib* attrib_info =
186 // This attrib is used in the current program.
231 // This attrib is not used in the current program.
  /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 52 Program.cpp \
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 28 #include "llvm/Support/Program.h"
54 /// writeProgramToFile - This writes the current "Program" to the named bitcode
83 /// EmitProgressBitcode - This function is used to output the current Program
116 /// runPasses - Run the specified passes on Program, outputting a bitcode file
124 bool BugDriver::runPasses(Module *Program,
154 WriteBitcodeToFile(Program, InFile.os());
262 << " 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...]
  /external/valgrind/main/gdbserver_tests/
mcleak.stdoutB.exp 48 Program exited normally.
mcwatchpoints.stdoutB.exp 40 Program exited normally.
  /frameworks/base/libs/hwui/
Android.mk 45 Program.cpp \
SkiaShader.cpp 193 Program* program = caches->currentProgram; local
194 glUniform1i(program->getUniform("bitmapSampler"), textureSlot);
195 glUniformMatrix4fv(program->getUniform("textureTransform"), 1,
197 glUniform2f(program->getUniform("textureDimension"), 1.0f / width, 1.0f / height);
279 Program* program = caches->currentProgram; local
292 glUniform1i(program->getUniform("bitmapSampler"), textureSlot);
293 glUniformMatrix4fv(program->getUniform("textureTransform"), 1,
295 glUniform2f(program->getUniform("textureDimension"), 1.0f / shaderInfo.width
383 Program* program = caches->currentProgram; local
    [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);
  /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;
  /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];
  /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);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bits1_5.h 96 virtual HRESULT WINAPI SetNotifyCmdLine(LPCWSTR Program,LPCWSTR Parameters) = 0;
143 HRESULT (WINAPI *SetNotifyCmdLine)(IBackgroundCopyJob2 *This,LPCWSTR Program,LPCWSTR Parameters);
192 #define IBackgroundCopyJob2_SetNotifyCmdLine(This,Program,Parameters) (This)->lpVtbl->SetNotifyCmdLine(This,Program,Parameters)
202 HRESULT WINAPI IBackgroundCopyJob2_SetNotifyCmdLine_Proxy(IBackgroundCopyJob2 *This,LPCWSTR Program,LPCWSTR Parameters);
  /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)
  /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());

Completed in 533 milliseconds

<<11121314151617181920>>