HomeSort by relevance Sort by last modified time
    Searched full:program (Results 1001 - 1025 of 23867) sorted by null

<<41424344454647484950>>

  /external/proguard/src/proguard/classfile/attribute/visitor/
AllAttributeVisitor.java 7 * This program is free software; you can redistribute it and/or modify it
12 * This program is distributed in the hope that it will be useful, but WITHOUT
18 * with this program; if not, write to the Free Software Foundation, Inc.,
30 * AttributeVisitor visit all Attribute objects of the program classes,
31 * program class members, or code attributes, respectively, that it visits.
  /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);
  /ndk/sources/host-tools/sed-4.2.1/lib/
error.h 5 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/>. */
40 If STATUS is nonzero, terminate the program with `exit (STATUS)'. */
49 /* If NULL, error will flush stdout, then print on stderr the program
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_api.h 25 void GLTrace_glAttachShader(GLuint program, GLuint shader);
26 void GLTrace_glBindAttribLocation(GLuint program, GLuint index, const GLchar* name);
54 void GLTrace_glDeleteProgram(GLuint program);
61 void GLTrace_glDetachShader(GLuint program, GLuint shader);
78 void GLTrace_glGetActiveAttrib(GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name);
79 void GLTrace_glGetActiveUniform(GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name);
80 void GLTrace_glGetAttachedShaders(GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders);
81 GLint GLTrace_glGetAttribLocation(GLuint program, const GLchar* name);
88 void GLTrace_glGetProgramiv(GLuint program, GLenum pname, GLint* params);
89 void GLTrace_glGetProgramInfoLog(GLuint program, GLsizei bufsize, GLsizei* length, GLchar* infolog)
    [all...]
  /frameworks/native/opengl/libs/
entries.in 1 GL_ENTRY(void, glActiveShaderProgramEXT, GLuint pipeline, GLuint program)
7 GL_ENTRY(void, glAttachShader, GLuint program, GLuint shader)
12 GL_ENTRY(void, glBindAttribLocation, GLuint program, GLuint index, const GLchar* name)
91 GL_ENTRY(void, glDeleteProgram, GLuint program)
110 GL_ENTRY(void, glDetachShader, GLuint program, GLuint shader)
145 GL_ENTRY(void, glExtGetProgramBinarySourceQCOM, GLuint program, GLenum shadertype, GLchar *source, GLint *length)
152 GL_ENTRY(GLboolean, glExtIsProgramBinaryQCOM, GLuint program)
195 GL_ENTRY(void, glGetActiveAttrib, GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name)
196 GL_ENTRY(void, glGetActiveUniform, GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name)
197 GL_ENTRY(void, glGetActiveUniformBlockName, GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei* length, GLchar* uniformBlockName
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/
entries.in 8 void, glActiveShaderProgramEXT, GLuint pipeline, GLuint program
14 void, glAttachShader, GLuint program, GLuint shader
19 void, glBindAttribLocation, GLuint program, GLuint index, const GLchar* name
98 void, glDeleteProgram, GLuint program
117 void, glDetachShader, GLuint program, GLuint shader
152 void, glExtGetProgramBinarySourceQCOM, GLuint program, GLenum shadertype, GLchar* source, GLint* length
159 GLboolean, glExtIsProgramBinaryQCOM, GLuint program
202 void, glGetActiveAttrib, GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name
203 void, glGetActiveUniform, GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name
204 void, glGetActiveUniformBlockName, GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei* length, GLchar* uniformBlockNam
    [all...]
  /external/ceres-solver/internal/ceres/
program.h 47 // adding and modifying parameters and residuals. The Program contains the core
51 // objective function. Various parts of Ceres transform one Program into
55 class Program {
57 Program();
58 explicit Program(const Program& program);
60 // The ordered parameter and residual blocks for the program.
66 // Serialize to/from the program and update states.
83 // Update a state vector for the program given a delta
    [all...]
coordinate_descent_minimizer.h 40 #include "ceres/program.h"
46 // Given a Program, and a ParameterBlockOrdering which partitions
55 // program are constant.
58 bool Init(const Program& program,
70 void Solve(Program* program,
  /external/chromium_org/third_party/mesa/src/src/mesa/
Makefile.am 59 program/program_parse.tab.c \
60 program/program_parse.tab.h \
61 program/lex.yy.c
78 program/program_parse.tab.c program/program_parse.tab.h: program/program_parse.y
79 $(MKDIR_P) program
80 $(AM_V_GEN) $(YACC) -p "_mesa_program_" -v -d --output=program/program_parse.tab.c $<
82 program/lex.yy.c: program/program_lexer.
    [all...]
SConscript 284 program_lex = env.CFile('program/lex.yy.c', 'program/program_lexer.l')
285 program_parse = env.CFile('program/program_parse.tab.c',
286 'program/program_parse.y')
288 # Make program/program_parse.tab.h reacheable from the include path
292 'program/arbprogparse.c',
293 'program/hash_table.c',
294 'program/ir_to_mesa.cpp',
295 'program/nvfragparse.c',
296 'program/nvvertparse.c'
    [all...]
  /external/mesa3d/src/mesa/
Makefile.am 59 program/program_parse.tab.c \
60 program/program_parse.tab.h \
61 program/lex.yy.c
78 program/program_parse.tab.c program/program_parse.tab.h: program/program_parse.y
79 $(MKDIR_P) program
80 $(AM_V_GEN) $(YACC) -p "_mesa_program_" -v -d --output=program/program_parse.tab.c $<
82 program/lex.yy.c: program/program_lexer.
    [all...]
SConscript 284 program_lex = env.CFile('program/lex.yy.c', 'program/program_lexer.l')
285 program_parse = env.CFile('program/program_parse.tab.c',
286 'program/program_parse.y')
288 # Make program/program_parse.tab.h reacheable from the include path
292 'program/arbprogparse.c',
293 'program/hash_table.c',
294 'program/ir_to_mesa.cpp',
295 'program/nvfragparse.c',
296 'program/nvvertparse.c'
    [all...]
  /frameworks/base/libs/hwui/
SkiaShader.h 44 * program to recreate the original effect.
67 virtual void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
144 void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
167 void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
191 void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot,
238 void setupProgram(Program* program, const mat4& modelView, const Snapshot& snapshot
    [all...]
  /frameworks/native/opengl/tests/gl2_java/src/com/android/gl2java/
GL2JavaView.java 123 int program = GLES20.glCreateProgram(); local
124 if (program != 0) {
125 GLES20.glAttachShader(program, vertexShader);
127 GLES20.glAttachShader(program, pixelShader);
129 GLES20.glLinkProgram(program);
131 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
133 Log.e(TAG, "Could not link program: ");
134 Log.e(TAG, GLES20.glGetProgramInfoLog(program));
135 GLES20.glDeleteProgram(program);
136 program = 0
    [all...]
  /packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/
SurfaceTextureView.java 69 int program = GLES20.glCreateProgram(); local
70 if (program != 0) {
71 GLES20.glAttachShader(program, vertexShader);
73 GLES20.glAttachShader(program, pixelShader);
75 GLES20.glLinkProgram(program);
77 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
79 Log.e(TAG, "Could not link program: ");
80 Log.e(TAG, GLES20.glGetProgramInfoLog(program));
81 GLES20.glDeleteProgram(program);
82 program = 0
    [all...]
  /external/bison/lib/
close-stream.c 5 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/>. */
39 If a program writes *anything* to STREAM, that program should close
46 left with an incomplete output file and the offending program would
65 fclose failed with EBADF. That can happen when a program like cp
  /external/chromium_org/courgette/
courgette_tool.cc 77 courgette::AssemblyProgram* program = NULL; local
80 &program);
86 const courgette::Status encode_status = Encode(program, &encoded);
88 courgette::DeleteAssemblyProgram(program);
91 Problem("Can't encode program.");
98 Problem("Can't serialize encoded program.");
104 Problem("Can't combine serialized encoded program streams.");
157 std::string program_buffer = ReadOrFail(program_file, "program");
160 courgette::AssemblyProgram* program = NULL; local
164 &program);
224 courgette::AssemblyProgram* program = NULL; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
CustomFilterCompiledProgram.cpp 98 Platform3DObject program = m_context->createProgram(); local
99 m_context->attachShader(program, vertexShader);
100 m_context->attachShader(program, fragmentShader);
101 m_context->linkProgram(program);
104 m_context->getProgramiv(program, GL_LINK_STATUS, &linked);
108 m_context->deleteProgram(program);
112 return program;
  /external/chromium_org/third_party/angle/samples/gles2_book/Hello_Triangle/
Hello_Triangle.c 22 // Handle to a program object
76 // Initialize the shader and program object
104 // Create the program object
116 // Link the program
133 esLogMessage ( "Error linking program:\n%s\n", infoLog );
142 // Store the program object
165 // Use the program object
  /external/chromium_org/third_party/mesa/src/src/glsl/
SConscript 59 # Copy these files to avoid generation object files into src/mesa/program
60 env.Prepend(CPPPATH = ['#src/mesa/program'])
61 env.Command('hash_table.c', '#src/mesa/program/hash_table.c', Copy('$TARGET', '$SOURCE'))
62 env.Command('symbol_table.c', '#src/mesa/program/symbol_table.c', Copy('$TARGET', '$SOURCE'))
73 builtin_compiler = env.Program(
125 glsl2 = env.Program(
131 glcpp = env.Program(
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
ARB_uniform_buffer_object.xml 43 <param name="program" type="GLuint" />
50 <param name="program" type="GLuint" />
58 <param name="program" type="GLuint" />
67 <param name="program" type="GLuint" />
72 <param name="program" type="GLuint" />
79 <param name="program" type="GLuint" />
90 <param name="program" type="GLuint" />
  /external/chromium_org/tools/perf/metrics/unittest_data/
cern_repeat_timeline.json 1 [{"children":[{"data":{"requestId":"1312.3","requestMethod":"GET","url":"http:\/\/info.cern.ch\/hypertext\/WWW\/TheProject.html"},"frameId":"1312.1","startTime":1377574729484.4,"type":"ResourceSendRequest","usedHeapSize":2055348}],"data":[],"endTime":1377574729484.4,"startTime":1377574729483.4,"type":"Program"},{"children":[],"data":[],"endTime":1377574729500.4,"startTime":1377574729500.4,"type":"Program"},{"children":[],"data":[],"endTime":1377574729501.4,"startTime":1377574729501.4,"type":"Program"},{"children":[{"children":[],"data":{"mimeType":"text\/html","requestId":"1312.3","statusCode":200},"endTime":1377574729501.4,"frameId":"1312.1","startTime":1377574729501.4,"type":"ResourceReceiveResponse","usedHeapSize":2055348}],"data":[],"endTime":1377574729502.4,"startTime":1377574729501.4,"type":"Program"},{"children":[],"data":[],"endTime":1377574729502.4,"startTime":1377574729502.4,"type":"Program"},{"children":[{"children":[{"children":[],"data":{"elementCount":0},"endTime":1377574729506.4,"frameId":"1312.1","startTime":1377574729506.4,"type":"RecalculateStyles","usedHeapSize":2137748}],"data":{"encodedDataLength":0,"requestId":"1312.3"},"endTime":1377574729526.4,"frameId":"1312.1","startTime":1377574729502.4,"type":"ResourceReceivedData","usedHeapSize":2468416,"usedHeapSizeDelta":413068}],"data":[],"endTime":1377574729526.4,"startTime":1377574729502.4,"type":"Program","usedHeapSizeDelta":413068},{"children":[],"data":[],"endTime":1377574729531.4,"startTime":1377574729531.4,"type":"Program"},{"children":[{"data":{"didFail":false,"networkTime":1377574729502.4,"requestId":"1312.3"},"frameId":"1312.1","startTime":1377574729531.4,"type":"ResourceFinish","usedHeapSize":2468416}],"data":[],"endTime":1377574729531.4,"startTime":1377574729531.4,"type":"Program"},{"children":[],"data":[],"endTime":1377574729531.4,"startTime":1377574729531.4,"type":"Program"},{"children":[],"data":[],"endTime":1377574729531.4,"startTime":1377574729531.4,"type":"Program"},{"children":[],"data":[],"endTime":1377574729531.4,"startTime":1377574729531.4,"type":"Program"} (…)
    [all...]
  /external/elfutils/tests/
test-subr.sh 23 # Network licensing program, please visit www.openinventionnetwork.com
88 program="$1"
90 case "$program" in
98 program=${bindir}/`program_transform ${program##*/}`
103 $program ${1+"$@"}
105 $program ${1+"$@"}
  /external/mesa3d/src/glsl/
SConscript 59 # Copy these files to avoid generation object files into src/mesa/program
60 env.Prepend(CPPPATH = ['#src/mesa/program'])
61 env.Command('hash_table.c', '#src/mesa/program/hash_table.c', Copy('$TARGET', '$SOURCE'))
62 env.Command('symbol_table.c', '#src/mesa/program/symbol_table.c', Copy('$TARGET', '$SOURCE'))
73 builtin_compiler = env.Program(
125 glsl2 = env.Program(
131 glcpp = env.Program(
  /external/mesa3d/src/mapi/glapi/gen/
ARB_uniform_buffer_object.xml 43 <param name="program" type="GLuint" />
50 <param name="program" type="GLuint" />
58 <param name="program" type="GLuint" />
67 <param name="program" type="GLuint" />
72 <param name="program" type="GLuint" />
79 <param name="program" type="GLuint" />
90 <param name="program" type="GLuint" />

Completed in 1718 milliseconds

<<41424344454647484950>>