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

1 2 3 4 5 6 78 91011>>

  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
FillLightFilter.java 24 import android.filterfw.core.Program;
38 private Program mProgram;
102 // Create program if not created already
FisheyeFilter.java 25 import android.filterfw.core.Program;
46 private Program mProgram;
109 // Create program if not created already
ImageSlicer.java 25 import android.filterfw.core.Program;
45 private Program mProgram;
103 // Create the program if not created already
ImageStitcher.java 25 import android.filterfw.core.Program;
40 private Program mProgram;
104 // Create the program if not created already
LomoishFilter.java 24 import android.filterfw.core.Program;
36 private Program mProgram;
181 // Create program if not created already
ResizeFilter.java 27 import android.filterfw.core.Program;
47 private Program mProgram;
82 throw new RuntimeException("ResizeFilter could not create suitable program!");
SharpenFilter.java 24 import android.filterfw.core.Program;
36 private Program mProgram;
107 // Create program if not created already
ToPackedGrayFilter.java 26 import android.filterfw.core.Program;
43 private Program mProgram;
VignetteFilter.java 24 import android.filterfw.core.Program;
36 private Program mProgram;
131 // 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...]
  /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...]
  /external/ceres-solver/internal/ceres/
callbacks.cc 33 #include "ceres/program.h"
40 StateUpdatingCallback::StateUpdatingCallback(Program* program,
42 : program_(program), parameters_(parameters) {}
program_evaluator.h 96 #include "ceres/program.h"
112 ProgramEvaluator(const Evaluator::Options &options, Program* program)
114 program_(program),
115 jacobian_writer_(options, program),
124 BuildResidualLayout(*program, &residual_layout_);
125 evaluate_scratch_.reset(CreateEvaluatorScratch(*program,
334 static void BuildResidualLayout(const Program& program,
336 const vector<ResidualBlock*>& residual_blocks = program.residual_blocks()
    [all...]
reorder_program.cc 43 #include "ceres/program.h"
44 #include "ceres/program.h"
66 << "Did you forget to call Program::SetParameterOffsetsAndIndex()? "
140 Program* program,
142 const int num_parameter_blocks = program->NumParameterBlocks();
153 program->mutable_parameter_blocks();
182 Program* program,
191 vector<ResidualBlock*>* residual_blocks = program->mutable_residual_blocks()
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
sandbox_bpf_test_runner.cc 63 sandbox::SandboxBPF::Program* program = local
65 delete program;
  /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/libs/hwui/
Dither.cpp 86 // Program management
89 void Dither::setupProgram(Program* program, GLuint* textureUnit) {
97 glUniform1i(program->getUniform("ditherSampler"), textureSlot);
  /frameworks/base/rs/java/android/renderscript/
ProgramFragment.java 23 * <p>The RenderScript fragment program, also known as fragment shader is responsible
25 * shader string containing the program body, textures inputs, and a Type object
26 * that describes the constants used by the program. Similar to the vertex programs,
28 * are sent to the graphics program automatically.</p>
30 * calls using the same program object, the runtime needs to be notified of that
33 * GLSL code. For example, if the fragment program is expecting a varying input called
34 * varTex0, the GLSL code inside the program vertex must provide it.
38 public class ProgramFragment extends Program {
51 * @param rs Context to which the program will belong.
  /frameworks/rs/
rsAllocation.h 36 class Program;
131 void addProgramToDirty(const Program *);
132 void removeProgramToDirty(const Program *);
173 Vector<const Program *> mToDirtyList;
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsAllocation.h 36 class Program;
131 void addProgramToDirty(const Program *);
132 void removeProgramToDirty(const Program *);
167 Vector<const Program *> mToDirtyList;
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsAllocation.h 36 class Program;
131 void addProgramToDirty(const Program *);
132 void removeProgramToDirty(const Program *);
167 Vector<const Program *> mToDirtyList;
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsAllocation.h 36 class Program;
131 void addProgramToDirty(const Program *);
132 void removeProgramToDirty(const Program *);
167 Vector<const Program *> mToDirtyList;

Completed in 1858 milliseconds

1 2 3 4 5 6 78 91011>>