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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/gpu/command_buffer/tests/
gl_unittest.cc 80 GLuint program = GLTestHelper::LoadProgram(v_shader_str, f_shader_str); local
81 glUseProgram(program);
82 GLuint position_loc = glGetAttribLocation(program, "a_Position");
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
native_modeset.h 75 * Program the CRTC to output the surface to the given connectors with the
82 boolean (*program)(struct native_display *ndpy, int crtc_idx, member in struct:native_display_modeset
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_sf.c 55 const GLuint *program; local
113 /* get the program
115 program = brw_get_program(&c.func, &program_size);
120 brw_disasm(stdout, &((struct brw_instruction *)program)[i],
127 program, program_size,
156 * program.
brw_clip.c 56 const GLuint *program; local
75 * This program accesses the entire VUE, so nr_regs needs to be the size of
89 /* Would ideally have the option of producing a program which could
112 /* get the program
114 program = brw_get_program(&c.func, &program_size);
119 brw_disasm(stdout, &((struct brw_instruction *)program)[i],
127 program, program_size,
brw_gs.c 52 const GLuint *program; local
106 assert(!"Unexpected primitive type in Gen6 SOL program.");
112 * Note that primitives which don't require a GS program have already
131 /* get the program
133 program = brw_get_program(&c.func, &program_size);
140 brw_disasm(stdout, &((struct brw_instruction *)program)[i],
147 program, program_size,
  /external/chromium_org/third_party/skia/tools/skpdiff/
SkCLImageDiffer.cpp 63 cl_program program = clCreateProgramWithSource(fContext, 1, &source, &sourceLen, NULL); local
64 cl_int programErr = clBuildProgram(program, 1, &fDevice, "", NULL, NULL);
66 SkDebugf("Program creation failed: %s\n", cl_error_to_string(programErr));
70 clGetProgramBuildInfo(program, fDevice, CL_PROGRAM_BUILD_LOG, sizeof(buildLog),
78 *kernel = clCreateKernel(program, name, &kernelErr);
  /external/chromium_org/v8/test/cctest/
test-mementos.cc 94 const char* program = local
105 i::SNPrintF(test_buf, program, call_count);
  /external/mesa3d/src/gallium/state_trackers/egl/common/
native_modeset.h 75 * Program the CRTC to output the surface to the given connectors with the
82 boolean (*program)(struct native_display *ndpy, int crtc_idx, member in struct:native_display_modeset
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf.c 55 const GLuint *program; local
113 /* get the program
115 program = brw_get_program(&c.func, &program_size);
120 brw_disasm(stdout, &((struct brw_instruction *)program)[i],
127 program, program_size,
156 * program.
brw_clip.c 56 const GLuint *program; local
75 * This program accesses the entire VUE, so nr_regs needs to be the size of
89 /* Would ideally have the option of producing a program which could
112 /* get the program
114 program = brw_get_program(&c.func, &program_size);
119 brw_disasm(stdout, &((struct brw_instruction *)program)[i],
127 program, program_size,
brw_gs.c 52 const GLuint *program; local
106 assert(!"Unexpected primitive type in Gen6 SOL program.");
112 * Note that primitives which don't require a GS program have already
131 /* get the program
133 program = brw_get_program(&c.func, &program_size);
140 brw_disasm(stdout, &((struct brw_instruction *)program)[i],
147 program, program_size,
  /external/skia/tools/skpdiff/
SkCLImageDiffer.cpp 63 cl_program program = clCreateProgramWithSource(fContext, 1, &source, &sourceLen, NULL); local
64 cl_int programErr = clBuildProgram(program, 1, &fDevice, "", NULL, NULL);
66 SkDebugf("Program creation failed: %s\n", cl_error_to_string(programErr));
70 clGetProgramBuildInfo(program, fDevice, CL_PROGRAM_BUILD_LOG, sizeof(buildLog),
78 *kernel = clCreateKernel(program, name, &kernelErr);
  /external/valgrind/main/none/tests/s390x/
stcke.c 11 short program; member in struct:stcke::reader
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
ToGrayFilter.java 24 import android.filterfw.core.Program;
63 protected Program getNativeProgram(FilterContext context) {
68 protected Program getShaderProgram(FilterContext context) {
74 ShaderProgram program = new ShaderProgram(context, mColorToGray4Shader); local
75 program.setMaximumTileSize(mTileSize);
77 program.setSourceRect(0.0f, 1.0f, 1.0f, -1.0f);
78 return program;
  /development/ndk/platforms/android-3/include/linux/sunrpc/
stats.h 18 struct rpc_program * program; member in struct:rpc_stat
32 struct svc_program * program; member in struct:svc_stat
  /external/ceres-solver/internal/ceres/
parameter_block_ordering_test.cc 39 #include "ceres/program.h"
84 const Program& program = problem_.program(); local
85 const vector<ParameterBlock*>& parameter_blocks = program.parameter_blocks();
86 scoped_ptr<HessianGraph> graph(CreateHessianGraph(program));
130 const Program& program = problem_.program(); local
131 scoped_ptr<HessianGraph> graph(CreateHessianGraph(program));
138 const Program& program = problem_.program(); local
    [all...]
problem_impl.h 61 class Program;
164 const Program& program() const { return *program_; } function in class:ceres::internal::ProblemImpl
165 Program* mutable_program() { return program_.get(); }
178 bool InternalEvaluate(Program* program,
202 internal::scoped_ptr<internal::Program> program_;
reorder_program_test.cc 35 #include "ceres/program.h"
88 problem.program().residual_blocks();
103 Program* program = problem.mutable_program(); local
104 program->SetParameterOffsetsAndIndex();
131 Program program(problem.program());
135 &program,
154 Program* program = problem.mutable_program() local
    [all...]
  /external/chromium_org/cc/output/
program_binding.h 33 unsigned program() const { return program_; } function in class:cc::ProgramBindingBase
  /external/chromium_org/courgette/
encoded_program_unittest.cc 12 // Create a simple program with a few addresses and references and
15 courgette::EncodedProgram* program = new courgette::EncodedProgram(); local
18 program->set_image_base(base);
20 EXPECT_TRUE(program->DefineRel32Label(5, 0)); // REL32 index 5 == base + 0
21 EXPECT_TRUE(program->DefineAbs32Label(7, 4)); // ABS32 index 7 == base + 4
22 program->EndLabels();
24 EXPECT_TRUE(program->AddOrigin(0)); // Start at base.
25 EXPECT_TRUE(program->AddAbs32(7));
26 EXPECT_TRUE(program->AddRel32(5));
31 EXPECT_TRUE(program->WriteTo(&sinks))
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_copy_texture_chromium.h 54 : program(0u),
59 GLuint program; member in struct:gpu::CopyTextureCHROMIUMResourceManager::ProgramInfo
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
shader_utils.cpp 74 GLuint program = glCreateProgram(); local
83 glDeleteProgram(program);
87 glAttachShader(program, vs);
90 glAttachShader(program, fs);
93 glLinkProgram(program);
96 glGetProgramiv(program, GL_LINK_STATUS, &linkStatus);
101 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &infoLogLength);
104 glGetProgramInfoLog(program, infoLog.size(), NULL, infoLog.data());
106 std::cerr << "program link failed: " << infoLog.data();
108 glDeleteProgram(program);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/
pp_program.h 37 struct program struct
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_program.h 37 struct program struct
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/sunrpc/
stats.h 18 struct rpc_program * program; member in struct:rpc_stat
32 struct svc_program * program; member in struct:svc_stat

Completed in 1982 milliseconds

12 3 4 5 6 7 8 91011>>