HomeSort by relevance Sort by last modified time
    Searched refs:program (Results 201 - 225 of 739) sorted by null

1 2 3 4 5 6 7 891011>>

  /sdk/emulator/qtools/
check_trace.cpp 16 void Usage(const char *program)
18 fprintf(stderr, "Usage: %s [options] trace_file elf_file\n", program);
dump_regions.cpp 13 void Usage(const char *program)
15 fprintf(stderr, "Usage: %s [options] trace_file\n", program);
  /frameworks/native/opengl/include/GLES2/
gl2ext.h 716 GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary);
717 GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);
719 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary);
720 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);
    [all...]
  /frameworks/base/libs/hwui/
SkiaShader.cpp 85 void SkiaShader::setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
140 void SkiaBitmapShader::setupProgram(Program* program, const mat4& modelView,
160 glUniform1i(program->getUniform("bitmapSampler"), textureSlot);
161 glUniformMatrix4fv(program->getUniform("textureTransform"), 1,
163 glUniform2f(program->getUniform("textureDimension"), 1.0f / width, 1.0f / height);
226 void SkiaLinearGradientShader::setupProgram(Program* program, const mat4& modelView,
236 glUniform1i(program->getUniform("gradientSampler"), textureSlot)
    [all...]
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/combo/
combo.edc 261 program {
269 program {
277 program {
285 program {
293 program {
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetActiveAttrib.cpp 1 /* void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name ) */
4 (JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jintArray length_ref, jint lengthOffset, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset, jbyteArray name_ref, jint nameOffset) {
90 (GLuint)program,
121 /* void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name ) */
124 (JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jobject length_buf, jobject size_buf, jobject type_buf, jbyte name) {
154 (GLuint)program,
173 /* void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name ) */
176 (JNIEnv *_env, jobject _this, jint program, jint index, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset) {
190 glGetProgramiv((GLuint)program, GL_ACTIVE_ATTRIBUTE_MAX_LENGTH, &len);
235 (GLuint)program,
    [all...]
glGetActiveUniform.cpp 1 /* void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name ) */
4 (JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jintArray length_ref, jint lengthOffset, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset, jbyteArray name_ref, jint nameOffset) {
90 (GLuint)program,
121 /* void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name ) */
124 (JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jobject length_buf, jobject size_buf, jobject type_buf, jbyte name) {
154 (GLuint)program,
173 /* void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name ) */
176 (JNIEnv *_env, jobject _this, jint program, jint index, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset) {
192 glGetProgramiv((GLuint)program, GL_ACTIVE_UNIFORM_MAX_LENGTH, &len);
238 (GLuint)program,
    [all...]
glGetTransformFeedbackVarying.cpp 1 /* void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name ) */
4 (JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jintArray length_ref, jint lengthOffset, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset, jbyteArray name_ref, jint nameOffset) {
90 (GLuint)program,
121 /* void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name ) */
124 (JNIEnv *_env, jobject _this, jint program, jint index, jint bufsize, jobject length_buf, jobject size_buf, jobject type_buf, jbyte name) {
154 (GLuint)program,
173 /* void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name ) */
176 (JNIEnv *_env, jobject _this, jint program, jint index, jintArray size_ref, jint sizeOffset, jintArray type_ref, jint typeOffset) {
190 glGetProgramiv((GLuint)program, GL_ACTIVE_ATTRIBUTE_MAX_LENGTH, &len);
235 (GLuint)program,
    [all...]
  /frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
MyGLSurfaceView.java 262 int program = GLES20.glCreateProgram(); local
263 if (program != 0) {
264 GLES20.glAttachShader(program, vertexShader);
266 GLES20.glAttachShader(program, pixelShader);
268 GLES20.glLinkProgram(program);
270 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
272 Log.e(TAG, "Could not link program: ");
273 Log.e(TAG, GLES20.glGetProgramInfoLog(program));
274 GLES20.glDeleteProgram(program);
275 program = 0
    [all...]
  /external/ceres-solver/internal/ceres/
solver_impl.cc 49 #include "ceres/program.h"
63 StateUpdatingCallback(Program* program, double* parameters)
64 : program_(program), parameters_(parameters) {}
75 Program* program_;
146 Program* program,
169 StateUpdatingCallback updating_callback(program, parameters);
208 Program* original_program = original_problem_impl->mutable_program();
322 // Create the three objects needed to minimize: the transformed program, th
522 const Program& program = problem_impl->program(); local
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
GLTextureViewActivity.java 189 int program = buildProgram(sSimpleVS, sSimpleFS); local
191 int attribPosition = glGetAttribLocation(program, "position");
194 int attribTexCoords = glGetAttribLocation(program, "texCoords");
197 int uniformTexture = glGetUniformLocation(program, "texture");
203 glUseProgram(program);
287 int program = glCreateProgram(); local
288 glAttachShader(program, vertexShader);
291 glAttachShader(program, fragmentShader);
294 glLinkProgram(program);
298 glGetProgramiv(program, GL_LINK_STATUS, status, 0)
    [all...]
  /external/llvm/lib/Support/
GraphWriter.cpp 18 #include "llvm/Support/Program.h"
72 if (sys::Program::ExecuteAndWait(ExecPath, &args[0],0,0,0,0,&ErrMsg)) {
80 sys::Program::ExecuteNoWait(ExecPath, &args[0],0,0,0,&ErrMsg);
87 GraphProgram::Name program) {
98 errs() << "Running 'Graphviz' program... ";
107 switch (program) {
117 errs() << "Running 'xdot.py' program... ";
145 // Find which program the user wants
147 if (program == GraphProgram::DOT)
151 if (program == GraphProgram::FDP
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCLayerImpl.cpp 174 const LayerChromium::BorderProgram* program = layerRenderer()->borderProgram(); local
175 ASSERT(program && program->initialized());
176 layerRenderer()->useShader(program->program());
181 GLC(context, context->uniformMatrix4fv(program->vertexShader().matrixLocation(), false, &glMatrix[0], 1));
183 GLC(context, context->uniform4f(program->fragmentShader().colorLocation(), debugBorderColor().red() / 255.0, debugBorderColor().green() / 255.0, debugBorderColor().blue() / 255.0, 1));
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 353 void GraphicsContext3D::attachShader(Platform3DObject program, Platform3DObject shader)
355 ASSERT(program);
358 ::glAttachShader(program, shader);
361 void GraphicsContext3D::bindAttribLocation(Platform3DObject program, GC3Duint index, const String& name)
363 ASSERT(program);
365 ::glBindAttribLocation(program, index, name.utf8().data());
593 void GraphicsContext3D::detachShader(Platform3DObject program, Platform3DObject shader)
595 ASSERT(program);
598 ::glDetachShader(program, shader);
673 bool GraphicsContext3D::getActiveAttrib(Platform3DObject program, GC3Duint index, ActiveInfo& info
    [all...]
  /sdk/emulator/opengl/tests/translator_tests/GLES_V2/
triangleV2.cpp 171 void dumpUniforms(GLuint program)
174 glGetProgramiv(program, GL_ACTIVE_UNIFORMS, &numU);
175 printf("==== Program %d has %d active uniforms ===\n", program, numU);
181 glGetActiveUniform(program, i,
188 // Initialize the shader and program object
199 // Create the program object
207 // Link the program
219 printf("Error linking program:\n%s\n", infoLog);
229 // Store the program objec
433 int program = Init(vShader, fShader); local
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/Launcher/qt/
ProcessLauncherQt.cpp 123 QString program(applicationPath.arg(sockets[0]));
127 webProcess->start(program);
139 qDebug() << "Failed to start" << program;
  /frameworks/base/opengl/java/android/opengl/
GLES20.java 342 // C function void glAttachShader ( GLuint program, GLuint shader )
345 int program,
349 // C function void glBindAttribLocation ( GLuint program, GLuint index, const char *name )
352 int program,
589 // C function void glDeleteProgram ( GLuint program )
592 int program
    [all...]
  /frameworks/native/cmds/flatland/
GLHelper.cpp 371 GLuint program = glCreateProgram(); local
372 if (program == 0) {
377 glAttachShader(program, vs);
378 glAttachShader(program, fs);
379 glLinkProgram(program);
381 glGetProgramiv(program, GL_LINK_STATUS, &linkStatus);
384 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
388 glGetProgramInfoLog(program, bufLength, NULL, buf);
389 fprintf(stderr, "Program link log:\n%s\n", buf);
393 glDeleteProgram(program);
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
tst_qscriptengine.cpp 280 QScriptProgram program(code, fileName, lineNumber);
281 QVERIFY(!program.isNull());
282 QCOMPARE(program.sourceCode(), code);
283 QCOMPARE(program.fileName(), fileName);
284 QCOMPARE(program.firstLineNumber(), lineNumber);
288 QScriptValue ret = eng.evaluate(program);
293 QScriptProgram sameProgram = program;
294 QVERIFY(sameProgram == program);
298 QScriptProgram sameProgram2(program);
299 QVERIFY(sameProgram2 == program);
366 QScriptProgram program; local
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
libGLESv2.cpp 25 #include "libGLESv2/Program.h"
57 void __stdcall glAttachShader(GLuint program, GLuint shader)
59 TRACE("(GLuint program = %d, GLuint shader = %d)", program, shader);
67 gl::Program *programObject = context->getProgram(program);
72 if (context->getShader(program))
106 void __stdcall glBindAttribLocation(GLuint program, GLuint index, const GLchar* name)
108 TRACE("(GLuint program = %d, GLuint index = %d, const GLchar* name = 0x%0.8p)", program, index, name)
4864 gl::Program *program = context->getCurrentProgram(); local
4908 gl::Program *program = context->getCurrentProgram(); local
4954 gl::Program *program = context->getCurrentProgram(); local
5000 gl::Program *program = context->getCurrentProgram(); local
5046 gl::Program *program = context->getCurrentProgram(); local
5092 gl::Program *program = context->getCurrentProgram(); local
5138 gl::Program *program = context->getCurrentProgram(); local
5184 gl::Program *program = context->getCurrentProgram(); local
5224 gl::Program *program = context->getCurrentProgram(); local
5264 gl::Program *program = context->getCurrentProgram(); local
5304 gl::Program *program = context->getCurrentProgram(); local
    [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES30.spec 43 void glTransformFeedbackVaryings ( GLuint program, GLsizei count, const GLchar *varyings, GLenum bufferMode )
44 void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name )
53 void glGetUniformuiv ( GLuint program, GLint location, GLuint *params )
54 GLint glGetFragDataLocation ( GLuint program, const GLchar *name )
69 void glGetUniformIndices ( GLuint program, GLsizei uniformCount, const GLchar *const *uniformNames, GLuint *uniformIndices )
70 void glGetActiveUniformsiv ( GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params )
71 GLuint glGetUniformBlockIndex ( GLuint program, const GLchar *uniformBlockName )
72 void glGetActiveUniformBlockiv ( GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params )
73 void glGetActiveUniformBlockName ( GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName )
74 void glUniformBlockBinding ( GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
subprocess.h 62 EXACT_NAME // Program is an exact file name; don't use the PATH.
67 void Start(const string& program, SearchMode search_mode);
  /external/valgrind/main/drd/tests/
atomic_var.c 2 * This test program triggers a single race condition on variable s_y.
22 #error Sorry, but this test program can only be compiled by a compiler that\
  /external/valgrind/main/none/tests/s390x/
stcke.c 11 short program; member in struct:stcke::reader
  /external/webkit/Source/WebCore/platform/graphics/chromium/
ProgramBinding.h 44 unsigned program() const { return m_program; } function in class:WebCore::ProgramBindingBase

Completed in 1197 milliseconds

1 2 3 4 5 6 7 891011>>