/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/ |
pmap_clnt.h | 5 * media and as a part of the software program in whole or part. Users 8 * program developed by the user. 52 * success = pmap_set(program, version, protocol, port); 53 * success = pmap_unset(program, version); 54 * port = pmap_getport(address, program, version, protocol); 56 * clnt_stat = pmap_rmtcall(address, program, version, procedure, 59 * clnt_stat = clnt_broadcast(program, version, procedure,
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpc/ |
pmap_clnt.h | 5 * media and as a part of the software program in whole or part. Users 8 * program developed by the user. 52 * success = pmap_set(program, version, protocol, port); 53 * success = pmap_unset(program, version); 54 * port = pmap_getport(address, program, version, protocol); 56 * clnt_stat = pmap_rmtcall(address, program, version, procedure, 59 * clnt_stat = clnt_broadcast(program, version, procedure,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpc/ |
pmap_clnt.h | 5 * media and as a part of the software program in whole or part. Users 8 * program developed by the user. 52 * success = pmap_set(program, version, protocol, port); 53 * success = pmap_unset(program, version); 54 * port = pmap_getport(address, program, version, protocol); 56 * clnt_stat = pmap_rmtcall(address, program, version, procedure, 59 * clnt_stat = clnt_broadcast(program, version, procedure,
|
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
nvvertparse.c | 27 * NVIDIA vertex program parser. 48 #include "program.h" 54 * program attributes. 92 if (parseState->ctx->Program.ErrorString[0] == 0) { 349 * Parse absolute program parameter register "c[##]" 366 /* a numbered program parameter register */ 369 RETURN_ERROR1("Bad program parameter number"); 398 /* a numbered program parameter register */ 403 RETURN_ERROR1("Bad program parameter number"); 578 /* absolute program parameter register * [all...] |
/external/mesa3d/src/mesa/program/ |
nvvertparse.c | 27 * NVIDIA vertex program parser. 48 #include "program.h" 54 * program attributes. 92 if (parseState->ctx->Program.ErrorString[0] == 0) { 349 * Parse absolute program parameter register "c[##]" 366 /* a numbered program parameter register */ 369 RETURN_ERROR1("Bad program parameter number"); 398 /* a numbered program parameter register */ 403 RETURN_ERROR1("Bad program parameter number"); 578 /* absolute program parameter register * [all...] |
/development/ndk/platforms/android-18/samples/gles3jni/jni/ |
gles3jni.cpp | 75 GLuint program = 0; local 86 program = glCreateProgram(); 87 if (!program) { 91 glAttachShader(program, vtxShader); 92 glAttachShader(program, fragShader); 94 glLinkProgram(program); 95 glGetProgramiv(program, GL_LINK_STATUS, &linked); 97 ALOGE("Could not link program"); 99 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &infoLogLen); 103 glGetProgramInfoLog(program, infoLogLen, NULL, infoLog) [all...] |
/external/chromium_org/media/tools/player_x11/ |
gl_video_renderer.cc | 172 GLuint program = glCreateProgram(); local 189 glAttachShader(program, vertex_shader); 206 glAttachShader(program, fragment_shader); 209 glLinkProgram(program); 211 glGetProgramiv(program, GL_LINK_STATUS, &result); 215 glGetProgramInfoLog(program, kErrorSize - 1, &len, log); 219 glUseProgram(program); 220 glDeleteProgram(program); 223 glUniform1i(glGetUniformLocation(program, "y_tex"), 0); 224 glUniform1i(glGetUniformLocation(program, "u_tex"), 1) [all...] |
/external/llvm/docs/CommandGuide/ |
bugpoint.rst | 8 *program arguments* 26 Load the dynamic shared object *library* into the test program whenever it is 35 **--args** *program args* 37 Pass all arguments specified after **--args** to the test program whenever it runs. 38 Note that if any of the *program args* start with a "``-``", you should use: 42 bugpoint [bugpoint args] --args -- [program args] 79 program. By default, **bugpoint** uses these passes internally when attempting to 91 Continually randomize the specified passes and run them on the test program 100 Open *filename* and redirect the standard input of the test program, whenever 122 Whenever the test program produces output on its standard output stream, i [all...] |
lit.rst | 7 :program:`lit` [*options*] [*tests*] 12 :program:`lit` is a portable tool for executing LLVM and Clang style test 14 :program:`lit` is designed to be a lightweight testing tool with as simple a 17 :program:`lit` should be run with one or more *tests* to run specified on the 22 tests have been run :program:`lit` will print summary information on the number 24 :program:`lit` program will execute with a non-zero exit code if any tests 27 By default :program:`lit` will use a succinct progress display and will only 29 options controlling the :program:`lit` progress display and output. 31 :program:`lit` also includes a number of options for controlling how tests ar [all...] |
/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...] |
/external/ceres-solver/internal/ceres/ |
program_evaluator.h | 93 #include "ceres/program.h" 103 ProgramEvaluator(const Evaluator::Options &options, Program* program) 105 program_(program), 106 jacobian_writer_(options, program), 115 BuildResidualLayout(*program, &residual_layout_); 116 evaluate_scratch_.reset(CreateEvaluatorScratch(*program, 315 static void BuildResidualLayout(const Program& program, 317 const vector<ResidualBlock*>& residual_blocks = program.residual_blocks() [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
Program.java | 31 * Program is a base class for all the objects that modify 35 public class Program extends BaseObj { 43 * TextureType specifies what textures are attached to Program 77 Program(int id, RenderScript rs) { 82 * Program object can have zero or more constant allocations 91 * Returns the type of the constant buffer used in the program 105 * Returns the number of textures used in this program object 139 * program 142 * @param slot index within the program's list of constant 158 * Binds a texture to be used in the program [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
i915_fragprog.c | 32 #include "program/prog_instruction.h" 33 #include "program/prog_parameter.h" 34 #include "program/program.h" 35 #include "program/programopt.h" 36 #include "program/prog_print.h" 82 const struct gl_fragment_program *program) 161 * hardware as program constants. 164 src = i915_emit_param4fv(p, program->Base.LocalParams[source->Index]); 179 &program->Base.Parameters->ParameterValues[source->Index][0].f) 306 const struct gl_fragment_program *program = &p->FragProg; local 354 const struct gl_fragment_program *program = &p->FragProg; local 375 const struct gl_fragment_program *program = &p->FragProg; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i915_fragprog.c | 32 #include "program/prog_instruction.h" 33 #include "program/prog_parameter.h" 34 #include "program/program.h" 35 #include "program/programopt.h" 36 #include "program/prog_print.h" 82 const struct gl_fragment_program *program) 161 * hardware as program constants. 164 src = i915_emit_param4fv(p, program->Base.LocalParams[source->Index]); 179 &program->Base.Parameters->ParameterValues[source->Index][0].f) 306 const struct gl_fragment_program *program = &p->FragProg; local 354 const struct gl_fragment_program *program = &p->FragProg; local 375 const struct gl_fragment_program *program = &p->FragProg; local [all...] |
/external/chromium_org/cc/output/ |
shader.h | 63 unsigned program, 80 unsigned program, 99 unsigned program, 114 unsigned program, 124 unsigned program, 145 unsigned program, 166 unsigned program, 190 unsigned program, 215 unsigned program, 240 unsigned program, [all...] |
shader.cc | 27 unsigned program, 34 context->BindUniformLocationCHROMIUM(program, locations[i], uniforms[i]); 159 unsigned program, 167 program, 193 unsigned program, 202 program, 230 unsigned program, 238 program, 262 unsigned program, 272 program, [all...] |
/external/chromium_org/build/android/pylib/ |
cmd_helper.py | 31 """Opens a subprocess to execute a program and returns its return value. 34 args: A string or a sequence of program arguments. The program to execute is 47 """Open a subprocess to execute a program and returns its output. 50 args: A string or a sequence of program arguments. The program to execute is 68 args: A string or a sequence of program arguments. The program to execute is 112 args: List of arguments to the program, the program to execute is the firs [all...] |
/external/chromium_org/third_party/angle/src/libGLESv2/ |
ResourceManager.cpp | 14 #include "libGLESv2/Program.h" 78 // Returns an unused shader/program name 96 // Returns an unused program/shader name 101 mProgramMap[handle] = new Program(mRenderer, this, handle); 157 void ResourceManager::deleteProgram(GLuint program) 159 ProgramMap::iterator programObject = mProgramMap.find(program); 244 Program *ResourceManager::getProgram(unsigned int handle) 246 ProgramMap::iterator program = mProgramMap.find(handle); local 248 if (program == mProgramMap.end()) 254 return program->second [all...] |
/external/llvm/include/llvm/Support/ |
TargetSelect.h | 48 /// InitializeAllTargetInfos - The main program should call this function if 58 /// InitializeAllTargets - The main program should call this function if it 71 /// InitializeAllTargetMCs - The main program should call this function if it 81 /// InitializeAllAsmPrinters - The main program should call this function if 91 /// InitializeAllAsmParsers - The main program should call this function if it 101 /// InitializeAllDisassemblers - The main program should call this function if 111 /// InitializeNativeTarget - The main program should call this function to 128 /// InitializeNativeTargetAsmPrinter - The main program should call 140 /// InitializeNativeTargetAsmParser - The main program should call 152 /// InitializeNativeTargetDisassembler - The main program should cal [all...] |
/external/llvm/tools/bugpoint/ |
FindBugs.cpp | 27 /// combinations of passes to compile the program with. Compile the program with 43 outs() << "Generating reference output from raw program: \n"; 44 if (!createReferenceFile(Program)) 58 // Step 2: Run optimizer passes on the program and check for success. 60 outs() << "Running selected passes on program to test for crash: "; 66 if(runPasses(Program, PassesToRun, Filename, false)) { 80 compileProgram(Program, &Error); 89 // Step 4: Run the program and compare its output to the reference 93 bool Diff = diffProgram(Program, Filename, "", false, &Error) [all...] |
/external/llvm/utils/ |
findmisopt | 13 # cause the program either generate different output or return a 28 # is a single argument containing all the arguments the program needs 32 # if specified to any value causes the result code of the program to 34 # determined by diffing the program's output with the non-optimized 73 echo "Unoptimized program: $prog" 74 echo " Optimized program: $optprog" 95 # Generate the non-optimized program and its output 132 echo "Trying to find optimization that breaks program:" 144 # Determine if we're done because none of the optimizations broke the program 146 echo "The program did not miscompile [all...] |
/libcore/ |
NOTICE | 74 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON 76 THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. 86 i) changes to the Program, and 88 ii) additions to the Program; 90 where such changes and/or additions to the Program originate 93 the Program by such Contributor itself or anyone acting on such 95 the Program which: (i) are separate modules of software 96 distributed in conjunction with the Program under their own 98 Program. 100 "Contributor" means any person or entity that distributes the Program [all...] |
/libcore/luni/src/main/java/java/lang/ |
ProcessBuilder.java | 40 * operating system program and its arguments. 43 * the requested operating system program and its arguments. 51 * operating system program and its arguments. Note that the list passed to 56 * the requested operating system program and its arguments. 71 * Returns this process builder's current program and arguments. Note that 75 * @return this process builder's program and arguments. 82 * Changes the program and arguments of this process builder. 85 * the new operating system program and its arguments. 93 * Changes the program and arguments of this process builder. Note that the 98 * the new operating system program and its arguments [all...] |