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

12 3

  /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...]
  /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...]
  /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...]
  /external/ceres-solver/internal/ceres/
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...]
  /external/chromium_org/gpu/command_buffer/client/
program_info_manager.cc 22 virtual void CreateInfo(GLuint program) OVERRIDE;
24 virtual void DeleteInfo(GLuint program) OVERRIDE;
27 GLuint program,
32 GLuint program,
36 GLuint program,
40 GLuint program,
49 GLuint program,
65 void NonCachedProgramInfoManager::CreateInfo(GLuint /* program */) {
68 void NonCachedProgramInfoManager::DeleteInfo(GLuint /* program */) {
73 GLuint /* program */,
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
codegen_unittest.cc 19 typedef SandboxBPF::Program Program;
43 // Create the most basic valid BPF program:
51 // Create a program with a single branch:
65 // Create a program with a single branch:
80 // Creates a basic BPF program that we'll use to test some of the code:
145 // This simple program demonstrates https://crbug.com/351103/
150 // Without the fix for this bug, this program should trigger the check in
151 // CompileAndCompare: the serialized graphs from the program and its compiled
256 Instruction* program, int)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_compiler.h 46 struct rc_program Program;
147 int dump; /* Dump the program if Debug == 1? */
  /external/deqp/framework/opengl/
gluShaderProgram.hpp 4 * drawElements Quality Program OpenGL ES Utilities
23 * \brief Shader and Program helpers.
58 * \brief Program information (link status, log).
101 * \brief Program object.
103 class Program
106 Program (const RenderContext& renderCtx);
107 Program (const RenderContext& renderCtx, deUint32 program);
108 ~Program (void);
132 Program (const Program& other)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 46 struct rc_program Program;
147 int dump; /* Dump the program if Debug == 1? */
  /frameworks/base/rs/java/android/renderscript/
Program.java 31 * Program is a base class for all the objects that modify
35 public class Program extends BaseObj {
43 * TextureType specifies what textures are attached to Program
77 Program(long id, RenderScript rs) {
82 * Program object can have zero or more constant allocations
91 * Returns the type of the constant buffer used in the program
105 * Returns the number of textures used in this program object
139 * program
142 * @param slot index within the program's list of constant
158 * Binds a texture to be used in the program
    [all...]
  /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/chromium_org/gpu/command_buffer/service/
program_manager.cc 121 Program::UniformInfo::UniformInfo()
128 Program::UniformInfo::UniformInfo(GLsizei _size,
201 Program::UniformInfo::~UniformInfo() {}
209 Program::Program(
224 void Program::Reset() {
236 std::string Program::ProcessLogInfo(
259 void Program::UpdateLogInfo() {
275 void Program::ClearUniforms(
371 void Program::Update()
    [all...]
program_manager.h 29 // This is used to track which attributes a particular program needs
32 class GPU_EXPORT Program : public base::RefCounted<Program> {
99 Program(ProgramManager* manager, GLuint service_id);
147 // Gets all the program info.
205 // We only consider the declared attributes in the program.
231 friend class base::RefCounted<Program>;
234 ~Program();
258 // Resets the program.
261 // Updates the program info after a successful link
    [all...]
  /external/deqp/modules/egl/
teglGLES2SharingTests.cpp 2 * drawElements Quality Program EGL Module
63 // \todo [2013-04-09 pyry] Use glu::Program
64 class Program
67 Program (const char* vertexSource, const char* fragmentSource)
120 ~Program (void)
396 Program program(vertexShader, fragmentShader);
398 if (!program.isOk())
399 TCU_FAIL("Failed to compile shader program");
442 GLU_CHECK_CALL(glUseProgram(program.getProgram()))
990 GLuint program = glCreateProgram(); local
1237 TestCaseGroup* program = new TestCaseGroup(m_eglTestCtx, "program", "Program creation, destruction and rendering test"); local
    [all...]
teglRenderTests.cpp 2 * drawElements Quality Program EGL Module
404 rr::Program(static_cast<const rr::VertexShader*>(&shader), static_cast<const rr::FragmentShader*>(&shader)),
415 class Program
418 Program (void) {}
419 virtual ~Program (void) {}
424 typedef de::SharedPtr<Program> ProgramSp;
465 deUint32 program = glCreateProgram(); local
466 glAttachShader(program, vertexShader);
467 glAttachShader(program, fragmentShader);
468 glLinkProgram(program);
    [all...]
teglImageFormatTests.cpp 2 * drawElements Quality Program EGL Module
62 // \todo [2013-04-09 pyry] Use glu::Program
63 class Program
66 Program (const char* vertexSource, const char* fragmentSource)
119 ~Program (void)
756 Program program(vertexShader, fragmentShader);
757 TCU_CHECK(program.isOk());
759 GLuint glProgram = program.getProgram();
876 Program program(vertexShader, fragmentShader)
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp 407 const char Program[] =
411 EXPECT_TRUE(matches(Program,
414 EXPECT_TRUE(matches(Program,
419 EXPECT_TRUE(matches(Program,
425 EXPECT_TRUE(matches(Program,
    [all...]
  /frameworks/base/libs/hwui/
Program.h 97 // Program description
101 * Describe the features required for a given program. The features
213 * the fragment shader. When this method returns true, the program should
223 * the fragment shader. When this method returns true, the program should
233 * Computes the unique key identifying this program.
281 * Logs the specified message followed by the key identifying this program.
307 * A program holds a vertex and a fragment shader. It offers several utility
310 class Program {
318 * Creates a new program with the specified vertex and fragment
321 Program(const ProgramDescription& description, const char* vertex, const char* fragment)
    [all...]
  /external/deqp/modules/glshared/
glsLongStressCase.cpp 2 * drawElements Quality Program OpenGL (ES) Module
680 class Program
683 Program (void);
684 ~Program (void);
695 Program (const Program&); // Not allowed.
696 Program& operator= (const Program&); // Not allowed.
708 Program::Program (void
1297 Program& program = m_programs->get(programName); member in namespace:deqp::gls::LongStressCaseInternal
    [all...]
glsTextureTestUtil.hpp 4 * drawElements Quality Program OpenGL (ES) Module
127 enum Program
195 glu::ShaderProgram* getProgram (Program program);
206 std::map<Program, glu::ShaderProgram*> m_programs;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_context.h 131 /* Maximum size of the program packet, which matches the limits on
136 /* Hardware version of a parsed fragment program. "Derived" from the
146 bool error; /* If program is malformed for any reason. */
159 /* TODO: split between the stored representation of a program and
166 GLuint program[(I915_MAX_TEX_INSN + I915_MAX_ALU_INSN) * 3]; member in struct:i915_fragment_program
172 GLuint *csr; /* Cursor, points into program.
228 GLuint Program[I915_PROGRAM_SIZE];
334 extern void i915_disassemble_program(const GLuint * program, GLuint sz);
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_context.h 131 /* Maximum size of the program packet, which matches the limits on
136 /* Hardware version of a parsed fragment program. "Derived" from the
146 bool error; /* If program is malformed for any reason. */
159 /* TODO: split between the stored representation of a program and
166 GLuint program[(I915_MAX_TEX_INSN + I915_MAX_ALU_INSN) * 3]; member in struct:i915_fragment_program
172 GLuint *csr; /* Cursor, points into program.
228 GLuint Program[I915_PROGRAM_SIZE];
334 extern void i915_disassemble_program(const GLuint * program, GLuint sz);
  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp 49 struct ATSParser::Program : public RefBase {
50 Program(ATSParser *parser, unsigned programNumber, unsigned programMapPID);
97 DISALLOW_EVIL_CONSTRUCTORS(Program);
101 Stream(Program *program,
126 Program *mProgram;
178 ATSParser::Program::Program(
185 ALOGV("new program number %u", programNumber);
188 bool ATSParser::Program::parsePSISection
1044 const sp<Program> &program = mPrograms.itemAt(index); local
1251 const sp<Program> &program = mPrograms.editItemAt(i); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorTimelineAgent.cpp 80 static const char Program[] = "Program";
    [all...]
  /external/chromium_org/third_party/mesa/src/include/CL/
cl.hpp 105 * cl::Program::Sources source(1,
107 * cl::Program program_ = cl::Program(context, source);
199 class Program;
888 F(cl_kernel_info, CL_KERNEL_PROGRAM, cl::Program) \
    [all...]

Completed in 1096 milliseconds

12 3