HomeSort by relevance Sort by last modified time
    Searched refs:program (Results 226 - 250 of 446) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/
configure 474 -program-prefix | --program-prefix | --program-prefi | --program-pref \
475 | --program-pre | --program-pr | --program-p)
477 -program-prefix=* | --program-prefix=* | --program-prefi=*
    [all...]
  /external/genext2fs/
configure 933 -program-prefix | --program-prefix | --program-prefi | --program-pref \
934 | --program-pre | --program-pr | --program-p)
936 -program-prefix=* | --program-prefix=* | --program-prefi=*
    [all...]
  /external/bison/data/
location.cc 7 # This program is free software; you can redistribute it and/or modify
12 # This program is distributed in the hope that it will be useful,
18 # along with this program; if not, write to the Free Software
  /external/clang/www/demo/
index.cgi 154 Bitter Melon the cat says, paste a C/C++ program in the text box or upload
262 my ( $program, $commandline, $outputFile ) = @_;
272 barf("Program $program took too long, compile time limited for the web script, sorry!.\n");
275 print scalar dumpFile( "Output from $program", $outputFile );
280 "$program exited with an error. Please correct source and resubmit.<p>\n" .
288 "Ouch, $program caught signal $sig. Sorry, better luck next time!\n"
  /external/mesa3d/src/pixelflinger2/
scanline.cpp 186 void GGLScanLine(const gl_shader_program * program, const GGLPixelFormat colorFormat,
195 // LOGD("pf2: GGLScanLine program=%p format=0x%.2X frameBuffer=%p depthBuffer=%p stencilBuffer=%p ",
196 // program, colorFormat, frameBuffer, depthBuffer, stencilBuffer);
198 const unsigned int varyingCount = program->VaryingSlots;
236 program->_LinkedShaders[MESA_SHADER_FRAGMENT]->function;
  /external/webkit/Tools/QtTestBrowser/
main.cpp 168 QFileInfo program(args.at(0));
170 if (program.exists())
171 programName = program.baseName();
  /frameworks/base/media/libstagefright/tests/
SurfaceMediaSource_test.cpp 254 GLuint program = glCreateProgram(); local
256 if (program) {
257 glAttachShader(program, vertexShader);
259 glAttachShader(program, fragmentShader);
261 glLinkProgram(program);
263 glGetProgramiv(program, GL_LINK_STATUS, &linkStatus);
266 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
270 glGetProgramInfoLog(program, bufLength, NULL, buf);
271 printf("Program link log:\n%s\n", buf);
276 glDeleteProgram(program);
    [all...]
  /system/media/mca/filterfw/java/android/filterfw/core/
ShaderProgram.java 22 import android.filterfw.core.Program;
31 public class ShaderProgram extends Program {
73 ShaderProgram program = nativeCreateIdentity(getGLEnvironment(context)); local
74 program.setTimer();
75 return program;
234 throw new RuntimeException("Could not prepare shader-program for drawing!");
  /external/chromium/base/
command_line.cc 132 // Push an empty argument, because we always assume argv_[0] is a program.
137 CommandLine::CommandLine(const FilePath& program) {
139 if (!program.empty()) {
140 program_ = program.value();
142 command_line_string_ = L'"' + program.value() + L'"';
145 argv_.push_back(program.value());
411 // Skip the first arg when copying since it's the program but push all
  /external/netperf/
netsh.c 117 char *program; /* program invocation name */ variable
478 program = (char *)malloc(strlen(argv[0]) + 1);
479 if (program == NULL) {
483 strcpy(program, argv[0]);
990 printf("Program name: %s\n", program);
  /external/webkit/Source/WebCore/platform/graphics/opengl/
TextureMapperGL.cpp 70 void glGetProgramInfoLog(GLuint program, GLsizei, GLsizei*, GLchar*);
148 LOG(Graphics, "Compiled program for texture mapper. Log: %s\n", infoLog);
260 if (TextureMapperGLData::shaderInfo.getUniformLocation(TextureMapperGLData::shaderInfo.prog##Program, TextureMapperGLData::shaderInfo.var##Variable, #var) < 0) \
261 LOG_ERROR("Couldn't find variable "#var" in program "#prog"\n");
263 #define TEXMAP_BUILD_SHADER(program) \
264 TextureMapperGLData::shaderInfo.createShaderProgram(vertexShaderSource##program, fragmentShaderSource##program, TextureMapperGLData::shaderInfo.program##Program);
370 TextureMapperGLData::ShaderInfo::ShaderProgramIndex program; local
    [all...]
  /frameworks/base/core/jni/
android_opengl_GLES20.cpp 139 /* void glAttachShader ( GLuint program, GLuint shader ) */
142 (JNIEnv *_env, jobject _this, jint program, jint shader) {
144 (GLuint)program,
149 /* void glBindAttribLocation ( GLuint program, GLuint index, const char *name ) */
152 (JNIEnv *_env, jobject _this, jint program, jint index, jstring name) {
162 (GLuint)program,
614 /* void glDeleteProgram ( GLuint program ) */
617 (JNIEnv *_env, jobject _this, jint program) {
619 (GLuint)program
772 /* void glDetachShader ( GLuint program, GLuint shader ) *
    [all...]
  /external/quake/
NOTICE 4 This program is free software; you can redistribute it and/or
8 This program is distributed in the hope that it will be useful,
13 along with this program; if not, write to the Free Software
32 Foundation's software and to any other program whose authors commit to
49 For example, if you distribute copies of such a program, whether
66 Finally, any free program is threatened constantly by software
68 program will individually obtain patent licenses, in effect making the
69 program proprietary. To prevent this, we have made it clear that any
79 0. This License applies to any program or other work which contains
81 under the terms of this General Public License. The "Program", below
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.idl 454 [StrictTypeChecking] void attachShader(in WebGLProgram program, in WebGLShader shader) raises(DOMException);
455 [StrictTypeChecking] void bindAttribLocation(in WebGLProgram program, in unsigned long index, in DOMString name) raises(DOMException);
496 [StrictTypeChecking] void deleteProgram(in WebGLProgram program);
505 [StrictTypeChecking] void detachShader(in WebGLProgram program, in WebGLShader shader) raises(DOMException);
520 [StrictTypeChecking] WebGLActiveInfo getActiveAttrib(in WebGLProgram program, in unsigned long index) raises (DOMException);
521 [StrictTypeChecking] WebGLActiveInfo getActiveUniform(in WebGLProgram program, in unsigned long index) raises (DOMException);
523 [StrictTypeChecking, Custom] void getAttachedShaders(in WebGLProgram program) raises (DOMException);
525 [StrictTypeChecking] int getAttribLocation(in WebGLProgram program, in DOMString name);
541 // any getProgramParameter(in WebGLProgram program, in unsigned long pname) raises(DOMException);
543 [StrictTypeChecking, ConvertNullStringTo=Null] DOMString getProgramInfoLog(in WebGLProgram program) raises(DOMException)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
GraphicsContext3DInternal.h 91 void attachShader(Platform3DObject program, Platform3DObject shader);
136 bool getActiveAttrib(Platform3DObject program, GC3Duint index, ActiveInfo&);
137 bool getActiveUniform(Platform3DObject program, GC3Duint index, ActiveInfo&);
138 void getAttachedShaders(Platform3DObject program, GC3Dsizei maxCount, GC3Dsizei* count, Platform3DObject* shaders);
147 void getProgramiv(Platform3DObject program, GC3Denum pname, GC3Dint* value);
157 void getUniformfv(Platform3DObject program, GC3Dint location, GC3Dfloat* value);
158 void getUniformiv(Platform3DObject program, GC3Dint location, GC3Dint* value);
  /external/liblzf/
configure 891 -program-prefix | --program-prefix | --program-prefi | --program-pref \
892 | --program-pre | --program-pr | --program-p)
894 -program-prefix=* | --program-prefix=* | --program-prefi=*
    [all...]
  /external/bluetooth/bluez/gdbus/
NOTICE 8 * This program is free software; you can redistribute it and/or modify
13 * This program is distributed in the hope that it will be useful,
19 * along with this program; if not, write to the Free Software
38 Foundation's software and to any other program whose authors commit to
55 For example, if you distribute copies of such a program, whether
72 Finally, any free program is threatened constantly by software
74 program will individually obtain patent licenses, in effect making the
75 program proprietary. To prevent this, we have made it clear that any
84 0. This License applies to any program or other work which contains
86 under the terms of this General Public License. The "Program", below
    [all...]
  /external/bluetooth/bluez/input/
NOTICE 8 * This program is free software; you can redistribute it and/or modify
13 * This program is distributed in the hope that it will be useful,
19 * along with this program; if not, write to the Free Software
38 Foundation's software and to any other program whose authors commit to
55 For example, if you distribute copies of such a program, whether
72 Finally, any free program is threatened constantly by software
74 program will individually obtain patent licenses, in effect making the
75 program proprietary. To prevent this, we have made it clear that any
84 0. This License applies to any program or other work which contains
86 under the terms of this General Public License. The "Program", below
    [all...]
  /external/bluetooth/bluez/plugins/
NOTICE 8 * This program is free software; you can redistribute it and/or modify
13 * This program is distributed in the hope that it will be useful,
19 * along with this program; if not, write to the Free Software
38 Foundation's software and to any other program whose authors commit to
55 For example, if you distribute copies of such a program, whether
72 Finally, any free program is threatened constantly by software
74 program will individually obtain patent licenses, in effect making the
75 program proprietary. To prevent this, we have made it clear that any
84 0. This License applies to any program or other work which contains
86 under the terms of this General Public License. The "Program", below
    [all...]
  /external/bluetooth/bluez/src/
NOTICE 10 * This program is free software; you can redistribute it and/or modify
15 * This program is distributed in the hope that it will be useful,
21 * along with this program; if not, write to the Free Software
40 Foundation's software and to any other program whose authors commit to
57 For example, if you distribute copies of such a program, whether
74 Finally, any free program is threatened constantly by software
76 program will individually obtain patent licenses, in effect making the
77 program proprietary. To prevent this, we have made it clear that any
86 0. This License applies to any program or other work which contains
88 under the terms of this General Public License. The "Program", below
    [all...]
  /external/bluetooth/glib/glib/
gutils.c 284 * @func: the function to call on normal program termination.
286 * Specifies a function to be called at normal program termination.
292 * DLL is detached from the program. This typically makes more sense
301 * loaded module which is unloaded before the program terminates might
302 * well cause a crash at program exit.
315 * program.
369 static gchar *inner_find_program_in_path (const gchar *program);
372 g_find_program_in_path (const gchar *program)
374 const gchar *last_dot = strrchr (program, '.');
380 const gint program_length = strlen (program);
    [all...]
  /frameworks/base/opengl/libs/
glesv2dbg_functions.h 7 GL_ENTRY(void, glAttachShader, GLuint program, GLuint shader)
9 GL_ENTRY(void, glBindAttribLocation, GLuint program, GLuint index, const GLchar* name)
70 GL_ENTRY(void, glDeleteProgram, GLuint program)
82 GL_ENTRY(void, glDetachShader, GLuint program, GLuint shader)
109 GL_ENTRY(void, glExtGetProgramBinarySourceQCOM, GLuint program, GLenum shadertype, GLchar *source, GLint *length)
116 GL_ENTRY(GLboolean, glExtIsProgramBinaryQCOM, GLuint program)
149 GL_ENTRY(void, glGetActiveAttrib, GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name)
150 GL_ENTRY(void, glGetActiveUniform, GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name)
151 GL_ENTRY(void, glGetAttachedShaders, GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders)
152 GL_ENTRY(int, glGetAttribLocation, GLuint program, const GLchar* name
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraGLTest.java 796 int program = GLES20.glCreateProgram(); local
    [all...]
  /external/bison/djgpp/
djunpack.bat 12 Rem This program is free software; you can redistribute it and/or modify
17 Rem This program is distributed in the hope that it will be useful,
23 Rem along with this program; if not, write to the Free Software Foundation,
  /external/mesa3d/
Android.mk 104 src/mesa/program/hash_table.c \
105 src/mesa/program/prog_parameter.cpp \
106 src/mesa/program/symbol_table.c \

Completed in 2127 milliseconds

1 2 3 4 5 6 7 8 91011>>