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

1 2 3 4 5 67 8 91011>>

  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
ToPackedGrayFilter.java 26 import android.filterfw.core.Program;
45 private Program mProgram;
VignetteFilter.java 27 import android.filterfw.core.Program;
39 private Program mProgram;
134 // Create program if not created already
FisheyeFilter.java 28 import android.filterfw.core.Program;
52 private Program mProgram;
115 // Create program if not created already
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 281 Symbol::Symbol(Program *prog, DataFile f, ubyte fidx)
295 Program *prog = pol.context()->getProgram();
319 ImmediateValue::ImmediateValue(Program *prog, uint32_t uval)
332 ImmediateValue::ImmediateValue(Program *prog, float fval)
345 ImmediateValue::ImmediateValue(Program *prog, double dval)
369 Program *prog = pol.context()->getProgram();
995 Program::Program(Type type, Target *arch)
1020 Program::~Program()
    [all...]
nv50_ir.h 296 class Program;
527 Symbol(Program *, DataFile file = FILE_MEMORY_CONST, ubyte fileIdx = 0);
561 ImmediateValue(Program *, uint32_t);
562 ImmediateValue(Program *, float);
563 ImmediateValue(Program *, double);
564 // NOTE: not added to program with
698 unsigned exit : 1; // terminate program after insn
875 Program *getProgram() const { return program; }
927 Program *program
    [all...]
nv50_ir_build_util.h 32 BuildUtil(Program *);
34 inline void setProgram(Program *);
35 inline Program *getProgram() const { return prog; }
169 void init(Program *);
174 Program *prog;
191 void BuildUtil::setProgram(Program *program)
193 prog = program;
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 281 Symbol::Symbol(Program *prog, DataFile f, ubyte fidx)
295 Program *prog = pol.context()->getProgram();
319 ImmediateValue::ImmediateValue(Program *prog, uint32_t uval)
332 ImmediateValue::ImmediateValue(Program *prog, float fval)
345 ImmediateValue::ImmediateValue(Program *prog, double dval)
369 Program *prog = pol.context()->getProgram();
995 Program::Program(Type type, Target *arch)
1020 Program::~Program()
    [all...]
nv50_ir.h 296 class Program;
527 Symbol(Program *, DataFile file = FILE_MEMORY_CONST, ubyte fileIdx = 0);
561 ImmediateValue(Program *, uint32_t);
562 ImmediateValue(Program *, float);
563 ImmediateValue(Program *, double);
564 // NOTE: not added to program with
698 unsigned exit : 1; // terminate program after insn
875 Program *getProgram() const { return program; }
927 Program *program
    [all...]
nv50_ir_build_util.h 32 BuildUtil(Program *);
34 inline void setProgram(Program *);
35 inline Program *getProgram() const { return prog; }
169 void init(Program *);
174 Program *prog;
191 void BuildUtil::setProgram(Program *program)
193 prog = program;
  /external/ceres-solver/internal/ceres/
solver_impl.cc 52 #include "ceres/program.h"
67 StateUpdatingCallback(Program* program, double* parameters)
68 : program_(program), parameters_(parameters) {}
79 Program* program_;
215 Program* program,
239 StateUpdatingCallback updating_callback(program, parameters);
277 Program* program,
917 const Program& program = problem_impl->program(); local
    [all...]
program_evaluator.h 93 #include "ceres/program.h"
103 ProgramEvaluator(const Evaluator::Options &options, Program* program)
105 program_(program),
106 jacobian_writer_(options, program),
115 BuildResidualLayout(*program, &residual_layout_);
116 evaluate_scratch_.reset(CreateEvaluatorScratch(*program,
315 static void BuildResidualLayout(const Program& program,
317 const vector<ResidualBlock*>& residual_blocks = program.residual_blocks()
    [all...]
block_jacobian_writer.cc 36 #include "ceres/program.h"
47 // per-parameter jacobian goes where in the overall program jacobian.
56 void BuildJacobianLayout(const Program& program,
60 const vector<ResidualBlock*>& residual_blocks = program.residual_blocks();
90 jacobian_layout->resize(program.NumResidualBlocks());
124 Program* program)
125 : program_(program) {
129 BuildJacobianLayout(*program,
    [all...]
  /external/dnsmasq/contrib/dnslist/
dnslist.pl 8 # This program is free software; you can redistribute it and/or modify
13 # This program is distributed in the hope that it will be useful,
19 # along with this program*; if not, write to the Free Software
284 Foundation's software and to any other program whose authors commit to
301 For example, if you distribute copies of such a program, whether
318 Finally, any free program is threatened constantly by software
320 program will individually obtain patent licenses, in effect making the
321 program proprietary. To prevent this, we have made it clear that any
330 0. This License applies to any program or other work which contains
332 under the terms of this General Public License. The "Program", below
    [all...]
  /external/valgrind/main/gdbserver_tests/
mcbreak.stdoutB.exp 46 Program received signal SIGTRAP, Trace/breakpoint trap.
52 Program received signal SIGTRAP, Trace/breakpoint trap.
  /frameworks/base/graphics/java/android/renderscript/
ProgramFragment.java 26 * <p>The RenderScript fragment program, also known as fragment shader is responsible
28 * shader string containing the program body, textures inputs, and a Type object
29 * that describes the constants used by the program. Similar to the vertex programs,
31 * are sent to the graphics program automatically.</p>
33 * calls using the same program object, the runtime needs to be notified of that
36 * GLSL code. For example, if the fragment program is expecting a varying input called
37 * varTex0, the GLSL code inside the program vertex must provide it.
41 public class ProgramFragment extends Program {
54 * @param rs Context to which the program will belong.
  /frameworks/base/libs/hwui/
Dither.cpp 86 // Program management
89 void Dither::setupProgram(Program* program, GLuint* textureUnit) {
97 glUniform1i(program->getUniform("ditherSampler"), textureSlot);
  /frameworks/rs/
rsAllocation.h 36 class Program;
131 void addProgramToDirty(const Program *);
132 void removeProgramToDirty(const Program *);
167 Vector<const Program *> mToDirtyList;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_tgsi_to_rc.c 276 dst = rc_insert_new_instruction(ttr->compiler, ttr->compiler->Program.Instructions.Prev);
293 &ttr->compiler->Program.ShadowSamplers);
327 rc_constants_add(&ttr->compiler->Program.Constants, &constant);
350 rc_constants_add(&ttr->compiler->Program.Constants, &constant);
353 ttr->immediate_offset = ttr->compiler->Program.Constants.Count;
  /external/mesa3d/src/gallium/drivers/r300/
r300_tgsi_to_rc.c 276 dst = rc_insert_new_instruction(ttr->compiler, ttr->compiler->Program.Instructions.Prev);
293 &ttr->compiler->Program.ShadowSamplers);
327 rc_constants_add(&ttr->compiler->Program.Constants, &constant);
350 rc_constants_add(&ttr->compiler->Program.Constants, &constant);
353 ttr->immediate_offset = ttr->compiler->Program.Constants.Count;
  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp 47 struct ATSParser::Program : public RefBase {
48 Program(ATSParser *parser, unsigned programNumber, unsigned programMapPID);
95 DISALLOW_EVIL_CONSTRUCTORS(Program);
99 Stream(Program *program,
124 Program *mProgram;
176 ATSParser::Program::Program(
183 ALOGV("new program number %u", programNumber);
186 bool ATSParser::Program::parsePSISection
1032 const sp<Program> &program = mPrograms.itemAt(index); local
1239 const sp<Program> &program = mPrograms.editItemAt(i); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_branches.c 237 DBG("Program after ENDIF handling:\n");
238 rc_print_program(&s->C->Program);
267 * the program.
288 for(struct rc_instruction * inst = s->C->Program.Instructions.Next;
289 inst != &s->C->Program.Instructions;
294 inst_mov = rc_insert_new_instruction(s->C, s->C->Program.Instructions.Prev);
318 ptr = c->Program.Instructions.Next;
319 while(ptr != &c->Program.Instructions) {
radeon_dataflow_swizzles.c 94 for(inst = c->Program.Instructions.Next; inst != &c->Program.Instructions; inst = inst->Next) {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_branches.c 237 DBG("Program after ENDIF handling:\n");
238 rc_print_program(&s->C->Program);
267 * the program.
288 for(struct rc_instruction * inst = s->C->Program.Instructions.Next;
289 inst != &s->C->Program.Instructions;
294 inst_mov = rc_insert_new_instruction(s->C, s->C->Program.Instructions.Prev);
318 ptr = c->Program.Instructions.Next;
319 while(ptr != &c->Program.Instructions) {
radeon_dataflow_swizzles.c 94 for(inst = c->Program.Instructions.Next; inst != &c->Program.Instructions; inst = inst->Next) {
  /external/chromium_org/gpu/command_buffer/service/
vertex_attrib_manager.h 22 class Program;
248 Program* current_program,

Completed in 1286 milliseconds

1 2 3 4 5 67 8 91011>>