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

12 3 4 5 6 7 8 91011>>

  /external/ceres-solver/internal/ceres/
scratch_evaluate_preparer.h 43 class Program;
50 static ScratchEvaluatePreparer* Create(const Program &program,
coordinate_descent_minimizer.h 45 class Program;
47 // Given a Program, and a ParameterBlockOrdering which partitions
56 // program are constant.
59 bool Init(const Program& program,
71 static bool IsOrderingValid(const Program& program,
79 static ParameterBlockOrdering* CreateOrdering(const Program& program);
82 void Solve(Program* program
    [all...]
solver_impl.h 48 class Program;
66 Program* program,
78 Program* program,
82 // Create the transformed Program, which has all the fixed blocks
84 // ordering, has the E blocks first in the resulting program, with
89 static Program* CreateReducedProgram(Solver::Options* options,
102 // Create the appropriate evaluator for the transformed program.
106 Program* program
    [all...]
program.cc 31 #include "ceres/program.h"
53 Program::Program() {}
55 Program::Program(const Program& program)
56 : parameter_blocks_(program.parameter_blocks_),
57 residual_blocks_(program.residual_blocks_) {
60 const vector<ParameterBlock*>& Program::parameter_blocks() const
    [all...]
program.h 49 // adding and modifying parameters and residuals. The Program contains the core
53 // objective function. Various parts of Ceres transform one Program into
57 class Program {
59 Program();
60 explicit Program(const Program& program);
62 // The ordered parameter and residual blocks for the program.
68 // Serialize to/from the program and update states.
85 // Update a state vector for the program given a delta
    [all...]
  /external/valgrind/main/gdbserver_tests/
mcsigpass.stdoutB.exp 2 Program received signal SIGSEGV, Segmentation fault.
6 Program received signal SIGSEGV, Segmentation fault.
10 Program received signal SIGBUS, Bus error.
14 Program received signal SIGFPE, Arithmetic exception.
mcsignopass.stdoutB.exp 1 Signal Stop Print Pass to program Description
3 Signal Stop Print Pass to program Description
5 Signal Stop Print Pass to program Description
8 Program received signal SIGSEGV, Segmentation fault.
12 Program received signal SIGSEGV, Segmentation fault.
16 Program received signal SIGSEGV, Segmentation fault.
20 Program received signal SIGSEGV, Segmentation fault.
24 Program received signal SIGSEGV, Segmentation fault.
28 Program received signal SIGSEGV, Segmentation fault.
32 Program received signal SIGSEGV, Segmentation fault
    [all...]
nlvgdbsigqueue.stdoutB.exp 3 Program received signal SIGTRAP, Trace/breakpoint trap.
10 Program received signal SIGUSR1, User defined signal 1.
14 Program received signal SIGUSR1, User defined signal 1.
16 Kill the program being debugged? (y or n) [answered Y; input not from terminal]
  /frameworks/av/cmds/screenrecord/
Program.h 32 class Program {
37 Program() :
46 ~Program() { release(); }
48 // Initialize the program for use with the specified texture type.
51 // Release the program and associated resources.
67 Program(const Program&);
68 Program& operator=(const Program&);
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
ProgramNode.cpp 17 ProgramNode::ProgramNode(Program& program) :
18 mProgram(program) {
21 void ProgramNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
22 program.before(model, view, projection);
25 void ProgramNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
26 program.after(model, view, projection);
SceneGraphNode.h 19 #include "Program.h"
27 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
29 void draw(Program& program, Matrix& model, Matrix& view, Matrix& projection);
TransformationNode.cpp 24 void TransformationNode::before(Program& program, Matrix& model, Matrix& view,
32 void TransformationNode::after(Program& program, Matrix& model, Matrix& view,
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/flocking/
WaterMeshNode.h 21 #include <graphics/Program.h>
28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/glowing/
BlurMeshNode.h 21 #include <graphics/Program.h>
28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
GlowingScene.h 17 #include <graphics/Program.h>
38 Program* mMainProgram;
39 Program* mBlurProgram;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ProgramVariable.java 25 private Program mProgram;
28 public ProgramVariable(Program program, String varName) {
29 mProgram = program;
33 public Program getProgram() {
43 throw new RuntimeException("Attempting to set program variable '" + mVarName
44 + "' but the program is null!");
51 throw new RuntimeException("Attempting to get program variable '" + mVarName
52 + "' but the program is null!");
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
Invert.java 22 import android.filterfw.core.Program;
47 protected Program getNativeProgram(FilterContext context) {
52 protected Program getShaderProgram(FilterContext context) {
  /packages/providers/TvProvider/tests/src/com/android/providers/tv/
EpgDataCleanupServiceTests.java 82 private static class Program {
87 Program(long startTime, long endTime) {
91 Program(long id, long startTime, long endTime) {
99 if (!(obj instanceof Program)) {
102 Program that = (Program) obj;
115 return "Program(id=" + id + ",start=" + startTime + ",end=" + endTime + ")";
127 private void insertPrograms(Program... programs) {
131 private void insertPrograms(Collection<Program> programs) {
136 for (Program program : programs)
210 Program program = new Program(1, 2); local
233 Program program = new Program(1, 2); local
    [all...]
  /external/llvm/utils/not/
not.cpp 11 #include "llvm/Support/Program.h"
30 std::string Program = sys::FindProgramByName(argv[0]);
33 int Result = sys::ExecuteAndWait(Program, argv, nullptr, nullptr, 0, 0,
  /external/chromium_org/third_party/angle/src/libGLESv2/
Program.cpp 8 // Program.cpp: Implements the gl::Program class. Implements GL program objects
11 #include "libGLESv2/Program.h"
70 // append a santized message to the program info log.
139 Program::Program(rx::Renderer *renderer, ResourceManager *manager, GLuint handle) : mResourceManager(manager), mHandle(handle)
152 Program::~Program()
167 bool Program::attachShader(Shader *shader
    [all...]
  /frameworks/base/libs/hwui/
Program.cpp 22 #include "Program.h"
29 // Base program
32 Program::Program(const ProgramDescription& description, const char* vertex, const char* fragment) {
85 Program::~Program() {
87 // This would ideally happen after linking the program
100 int Program::addAttrib(const char* name) {
106 int Program::bindAttrib(const char* name, ShaderBindings bindingSlot) {
112 int Program::getAttrib(const char* name)
    [all...]
ProgramCache.h 27 #include "Program.h"
38 * Generates and caches program. Programs are generated based on
46 Program* get(const ProgramDescription& description);
51 Program* generateProgram(const ProgramDescription& description, programid key);
59 KeyedVector<programid, Program*> mCache;
  /external/llvm/lib/Support/
Program.cpp 1 //===-- Program.cpp - Implement OS Program Concept --------------*- C++ -*-===//
10 // This file implements the operating system Program concept.
14 #include "llvm/Support/Program.h"
25 static bool Execute(ProcessInfo &PI, StringRef Program, const char **args,
29 int sys::ExecuteAndWait(StringRef Program, const char **args, const char **envp,
34 if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) {
48 ProcessInfo sys::ExecuteNoWait(StringRef Program, const char **args,
55 if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg))
64 #include "Unix/Program.inc
    [all...]
  /external/llvm/tools/bugpoint/
BugDriver.cpp 38 // program. If this filename is set, it is used as the reference diff source,
43 OutputFile("output", cl::desc("Specify a reference program output "
47 /// setNewProgram - If we reduce or update the program somehow, call this method
49 /// specified one as the current program.
51 delete Program;
52 Program = M;
73 Program(nullptr), Interpreter(nullptr), SafeInterpreter(nullptr),
78 delete Program;
119 assert(!Program && "Cannot call addSources multiple times!");
123 Program = ParseInputFile(Filenames[0], Context)
    [all...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
Program.h 32 * Abstracts a GLSL program comprising a vertex and fragment shader
34 class Program {
39 Program(const ProgramCache::Key& needs, const char* vertex, const char* fragment);
40 ~Program();
45 /* Binds this program to the GLES context */
65 // Name of the OpenGL program and shaders

Completed in 713 milliseconds

12 3 4 5 6 7 8 91011>>