Searched refs:program (Results 201 - 225 of 1004) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/tools/skpdiff/
H A DSkCLImageDiffer.cpp63 cl_program program = clCreateProgramWithSource(fContext, 1, &source, &sourceLen, NULL); local
64 cl_int programErr = clBuildProgram(program, 1, &fDevice, "", NULL, NULL);
70 clGetProgramBuildInfo(program, fDevice, CL_PROGRAM_BUILD_LOG, sizeof(buildLog),
78 *kernel = clCreateKernel(program, name, &kernelErr);
/external/deqp/modules/gles2/functional/
H A Des2fLightAmountTest.cpp169 // Create shader and program objects.
170 glu::ShaderProgram program(m_context.getRenderContext(), glu::makeVtxFragSources(vertexShaderSource, fragmentShaderSource));
171 m_testCtx.getLog() << program;
174 glUseProgram(program.getProgram());
176 bool testOk = program.isOk();
H A Des2fNegativeStateApiTests.cpp122 GLuint program = glCreateProgram();
125 m_log << TestLog::Section("", "GL_INVALID_VALUE is generated if program is not a value generated by OpenGL.");
130 m_log << TestLog::Section("", "GL_INVALID_OPERATION is generated if program is not a program object.");
136 glGetAttachedShaders(program, -1, &count[0], &shaders[0]);
141 glDeleteProgram(program);
153 GLuint program = glCreateProgram();
176 glGetShaderiv(program, GL_SHADER_TYPE, &param[0]);
181 glDeleteProgram(program);
186 GLuint program
[all...]
/external/deqp/modules/gles3/performance/
H A Des3pTextureCases.hpp59 void setupProgram (deUint32 program);
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Dnative_modeset.h82 boolean (*program)(struct native_display *ndpy, int crtc_idx, member in struct:native_display_modeset
/external/mesa3d/src/mesa/main/
H A Dnvprogram.h56 _mesa_GetProgramStringNV(GLuint id, GLenum pname, GLubyte *program);
74 _mesa_LoadProgramNV(GLenum target, GLuint id, GLsizei len, const GLubyte *program);
113 _mesa_setup_nv_temporary_count(struct gl_program *program);
117 struct gl_program *program);
/external/mesa3d/src/mesa/state_tracker/
H A Dst_mesa_to_tgsi.h52 const struct gl_program *program,
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_program.c40 #include "program/prog_instruction.h"
41 #include "program/prog_statevars.h"
42 #include "program/prog_execute.h"
62 * Private storage for the vertex program pipeline stage.
65 /** The results of running the vertex program go into these arrays. */
209 * Called via ctx->Driver.ProgramStringNotify() after a new vertex program
213 _tnl_program_string(struct gl_context *ctx, GLenum target, struct gl_program *program) argument
216 * If we had derived anything from the program that was private to this
224 * Initialize virtual machine state prior to executing vertex program.
270 * Map the texture images which the vertex program wil
316 struct gl_vertex_program *program = ctx->VertexProgram._Current; local
[all...]
/external/skia/tools/skpdiff/
H A DSkCLImageDiffer.cpp63 cl_program program = clCreateProgramWithSource(fContext, 1, &source, &sourceLen, NULL); local
64 cl_int programErr = clBuildProgram(program, 1, &fDevice, "", NULL, NULL);
70 clGetProgramBuildInfo(program, fDevice, CL_PROGRAM_BUILD_LOG, sizeof(buildLog),
78 *kernel = clCreateKernel(program, name, &kernelErr);
/external/valgrind/main/gdbserver_tests/
H A Dnlpasssigalrm.stdoutB.exp3 Signal Stop Print Pass to program Description
8 Signal Stop Print Pass to program Description
/external/bison/djgpp/
H A Dsubpipe.c5 This program is free software: you can redistribute it and/or modify
10 This program is distributed in the hope that it will be useful,
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
180 char *program; local
187 program = strrchr(arguments[0], '/');
188 if (program)
189 program++;
191 program = arguments[0];
228 status = spawnvp(P_WAIT, program, arguments);
234 error(EXIT_FAILURE, 0, _("subsidiary program '
277 reap_subpipe(pid_t pid, char const *program) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Dcoordinate_descent_minimizer.cc46 #include "ceres/program.h"
60 const Program& program,
89 const vector<ParameterBlock*>& parameter_blocks = program.parameter_blocks();
100 const vector<ResidualBlock*>& residual_blocks = program.residual_blocks();
203 void CoordinateDescentMinimizer::Solve(Program* program, argument
214 Evaluator::Create(evaluator_options_, program, &error));
237 const Program& program,
246 if (!program.IsParameterBlockSetIndependent(it->second)) {
262 const Program& program) {
264 ComputeRecursiveIndependentSetOrdering(program, orderin
59 Init( const Program& program, const ProblemImpl::ParameterMap& parameter_map, const ParameterBlockOrdering& ordering, string* error) argument
236 IsOrderingValid( const Program& program, const ParameterBlockOrdering& ordering, string* message) argument
261 CreateOrdering( const Program& program) argument
[all...]
H A Dcallbacks.cc33 #include "ceres/program.h"
40 StateUpdatingCallback::StateUpdatingCallback(Program* program, argument
42 : program_(program), parameters_(parameters) {}
H A Ddense_jacobian_writer.h39 #include "ceres/program.h"
50 Program* program)
51 : program_(program) {
49 DenseJacobianWriter(Evaluator::Options , Program* program) argument
H A Devaluator.h74 Program* program,
92 // Also worth noting is that this function mutates program by
95 static bool Evaluate(Program* program,
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_test_utils.cc58 // Create the program object
59 GLuint program = glCreateProgram(); local
60 glAttachShader(program, vertex_shader);
61 glAttachShader(program, fragment_shader);
62 // Link the program
63 glLinkProgram(program);
66 glGetProgramiv(program, GL_LINK_STATUS, &linked);
70 glGetProgramInfoLog(program, sizeof(buffer), &length, buffer);
72 EXPECT_EQ(1, linked) << "Error linking program: " << log;
73 glDeleteProgram(program);
[all...]
/external/chromium_org/ppapi/examples/video_decode/
H A Dvideo_decode_dev.cc49 Shader() : program(0),
52 GLuint program; member in struct:__anon10069::Shader
142 void CreateShader(GLuint program, GLenum type, const char* source, int size);
190 // Shader program to draw GL_TEXTURE_2D target.
192 // Shader program to draw GL_TEXTURE_RECTANGLE_ARB target.
242 if (shader_2d_.program)
243 gles2_if_->DeleteProgram(context_->pp_resource(), shader_2d_.program);
244 if (shader_rectangle_arb_.program) {
246 context_->pp_resource(), shader_rectangle_arb_.program);
434 gles2_if_->UseProgram(context_->pp_resource(), shader_2d_.program);
673 CreateShader( GLuint program, GLenum type, const char* source, int size) argument
[all...]
/external/chromium_org/ppapi/examples/video_capture/
H A Dvideo_capture.cc124 void CreateShader(GLuint program, GLenum type, const char* source, int size);
358 // Create shader program.
359 GLuint program = gles2_if_->CreateProgram(context); local
360 CreateShader(program, GL_VERTEX_SHADER, kVertexShader, sizeof(kVertexShader));
362 program, GL_FRAGMENT_SHADER, kFragmentShader, sizeof(kFragmentShader));
363 gles2_if_->LinkProgram(context, program);
364 gles2_if_->UseProgram(context, program);
365 gles2_if_->DeleteProgram(context, program);
367 context, gles2_if_->GetUniformLocation(context, program, "y_texture"), 0);
369 context, gles2_if_->GetUniformLocation(context, program, "u_textur
406 CreateShader( GLuint program, GLenum type, const char* source, int size) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/video_render/android/
H A Dvideo_render_opengles20.cc113 "%s: Could not create program", __FUNCTION__);
281 GLuint program = glCreateProgram(); local
282 if (program) {
283 glAttachShader(program, vertexShader);
285 glAttachShader(program, pixelShader);
287 glLinkProgram(program);
289 glGetProgramiv(program, GL_LINK_STATUS, &linkStatus);
292 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
296 glGetProgramInfoLog(program, bufLength, NULL, buf);
298 "%s: Could not link program
[all...]
/external/chromium_org/third_party/khronos/GLES2/
H A Dgl2ext.h229 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary);
230 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLint length);
232 GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary);
233 GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const void *binary, GLint length);
867 typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params);
868 typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params);
872 GL_APICALL void GL_APIENTRY glGetnUniformfvEXT (GLuint program, GLint location, GLsizei bufSize, GLfloat *params);
873 GL_APICALL void GL_APIENTRY glGetnUniformivEXT (GLuint program, GLint location, GLsizei bufSize, GLint *params);
898 typedef void (GL_APIENTRYP PFNGLACTIVESHADERPROGRAMEXTPROC) (GLuint pipeline, GLuint program);
906 typedef void (GL_APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenu
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fFragDepthTests.cpp192 glu::ShaderProgram program(m_context.getRenderContext(), glu::makeVtxFragSources(s_vertexShaderSrc, m_fragSrc.c_str()));
193 log << program; local
195 if (!program.isOk())
213 gl.useProgram(program.getProgram());
215 gl.uniform4f(gl.getUniformLocation(program.getProgram(), "u_color"), 0.0f, 1.0f, 0.0f, 1.0f);
218 gls::setupDefaultUniforms(m_context.getRenderContext(), program.getProgram());
226 glu::draw(m_context.getRenderContext(), program.getProgram(), DE_LENGTH_OF_ARRAY(vertexArrays), &vertexArrays[0],
321 glu::ShaderProgram program(m_context.getRenderContext(), glu::makeVtxFragSources(s_vertexShaderSrc, m_fragSrc.c_str()));
322 log << program; local
324 if (!program
366 log << program; local
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
H A DT.g13 program
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
H A Dvia-parser.rb12 program
94 parser.program
/external/chromium_org/courgette/
H A Ddisassembler_elf_32_arm.h37 virtual CheckBool EmitInstruction(AssemblyProgram* program,
68 AssemblyProgram* program) WARN_UNUSED_RESULT;
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_copy_texture_chromium.h66 : program(0u),
71 GLuint program; member in struct:gpu::CopyTextureCHROMIUMResourceManager::ProgramInfo

Completed in 861 milliseconds

1234567891011>>