HomeSort by relevance Sort by last modified time
    Searched refs:Program (Results 51 - 75 of 595) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tests/openglperf2/jni/graphics/
TransformationNode.cpp 24 void TransformationNode::before(Program& program, Matrix& model, Matrix& view,
32 void TransformationNode::after(Program& program, Matrix& model, Matrix& view,
  /packages/apps/TV/src/com/android/tv/data/epg/
EpgReader.java 22 import com.android.tv.data.Program;
49 * Note that the {@code Program} doesn't have valid program ID because it's not retrieved from
52 List<Program> getPrograms(long channelId);
StubEpgReader.java 22 import com.android.tv.data.Program;
50 public List<Program> getPrograms(long channelId) {
  /external/ceres-solver/internal/ceres/
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...]
  /frameworks/base/libs/hwui/
Program.cpp 19 #include "Program.h"
26 // Base program
29 Program::Program(const ProgramDescription& description, const char* vertex, const char* fragment) {
82 Program::~Program() {
84 // This would ideally happen after linking the program
97 int Program::addAttrib(const char* name) {
103 int Program::bindAttrib(const char* name, ShaderBindings bindingSlot) {
109 int Program::getAttrib(const char* name)
    [all...]
ProgramCache.h 28 #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 std::map<programid, std::unique_ptr<Program>> mCache;
  /external/valgrind/gdbserver_tests/
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]
nlcontrolc.stdoutB.exp 2 Program received signal SIGTRAP, Trace/breakpoint trap.
14 Program received signal SIGTRAP, Trace/breakpoint trap.
21 Program exited normally.
nlpasssigalrm.stdoutB.exp 3 Signal Stop Print Pass to program Description
6 Program received signal SIGALRM, Alarm clock.
8 Signal Stop Print Pass to program Description
19 Program received signal SIGxx, Real-time event xx.
22 Program exited normally.
  /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"
26 static bool Execute(ProcessInfo &PI, StringRef Program, const char **args,
30 int sys::ExecuteAndWait(StringRef Program, const char **args, const char **envp,
35 if (Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg)) {
49 ProcessInfo sys::ExecuteNoWait(StringRef Program, const char **args,
56 if (!Execute(PI, Program, args, envp, redirects, memoryLimit, ErrMsg))
65 #include "Unix/Program.inc
    [all...]
  /packages/apps/TV/src/com/android/tv/data/
ProgramDataManager.java 60 // To prevent from too many program update operations at the same time, we give random interval
90 private final Map<Long, Program> mChannelIdCurrentProgramMap = new HashMap<>();
102 private Map<Long, ArrayList<Program>> mChannelIdProgramCache = new HashMap<>();
104 // Any program that ends prior to this time will be removed from the cache
105 // when a channel's current program is updated.
110 private final LruCache<Long, Program> mZeroLengthProgramCache = new LruCache<>(10);
152 * Set the program prefetch update wait which gives the delay to query all programs from DB
208 * Returns the current program at the specified channel.
210 public Program getCurrentProgram(long channelId) {
215 * Reloads program data
480 Program program = Program.fromCursor(c); local
563 Program program = Program.fromCursor(c); local
613 Program program = null; local
    [all...]
  /external/llvm/tools/bugpoint/
BugDriver.cpp 39 // program. If this filename is set, it is used as the reference diff source,
44 OutputFile("output", cl::desc("Specify a reference program output "
48 /// setNewProgram - If we reduce or update the program somehow, call this method
50 /// specified one as the current program.
52 delete Program;
53 Program = M;
74 Program(nullptr), Interpreter(nullptr), SafeInterpreter(nullptr),
79 delete Program;
121 assert(!Program && "Cannot call addSources multiple times!");
125 Program = parseInputFile(Filenames[0], Context).release()
    [all...]
FindBugs.cpp 27 /// combinations of passes to compile the program with. Compile the program with
43 outs() << "Generating reference output from raw program: \n";
44 if (!createReferenceFile(Program))
58 // Step 2: Run optimizer passes on the program and check for success.
60 outs() << "Running selected passes on program to test for crash: ";
66 if(runPasses(Program, PassesToRun, Filename, false)) {
80 compileProgram(Program, &Error);
89 // Step 4: Run the program and compare its output to the reference
93 bool Diff = diffProgram(Program, Filename, "", false, &Error)
    [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
Description.h 25 class Program;
29 * to generate a corresponding GLSL program and set the appropriate
32 * Program and ProgramCache are friends and access the state directly
35 friend class Program;
Program.cpp 21 #include "Program.h"
28 Program::Program(const ProgramCache::Key& /*needs*/, const char* vertex, const char* fragment)
76 Program::~Program() {
79 bool Program::isValid() const {
83 void Program::use() {
87 GLuint Program::getAttrib(const char* name) const {
92 GLint Program::getUniform(const char* name) const {
97 GLuint Program::buildShader(const char* source, GLenum type)
    [all...]
  /external/valgrind/gdbserver_tests/solaris/
nlcontrolc.stdoutB.exp 2 Program received signal SIGTRAP, Trace/breakpoint trap.
10 Program received signal SIGTRAP, Trace/breakpoint trap.
17 Program exited normally.
  /art/tools/dexfuzz/src/dexfuzz/fuzzers/
FuzzerMultipleExecute.java 21 import dexfuzz.program.Program;
43 Program program = fuzz(); local
45 execute(program);
  /external/sonivox/arm-wt-22k/host_src/
arm-wt-22k.mak 10 CC = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
12 LD = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
13 AR = C:\Program Files\GNUARM\bin\arm-elf-ar.exe
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
abiflags-strip1-ph.d 8 Program Header:
  /external/libchrome/sandbox/linux/bpf_dsl/
codegen.h 30 // Compile() to convert this DAG to a Program.
47 // CodeGen::Program program = gen.Compile(dag);
49 // static_cast<unsigned short>(program.size()), &program[0] };
55 // program in the kernel.
56 typedef std::vector<struct sock_filter> Program;
59 using Node = Program::size_type;
79 // program that can be executed by a BPF virtual machine.
80 Program Compile(Node head)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.c 40 c->Program.Instructions.Prev = &c->Program.Instructions;
41 c->Program.Instructions.Next = &c->Program.Instructions;
42 c->Program.Instructions.U.I.Opcode = RC_OPCODE_ILLEGAL_OPCODE;
47 rc_constants_destroy(&c->Program.Constants);
106 * Recompute c->Program.InputsRead and c->Program.OutputsWritten
108 * in program instructions.
114 c->Program.InputsRead = 0
    [all...]

Completed in 1249 milliseconds

1 23 4 5 6 7 8 91011>>