HomeSort by relevance Sort by last modified time
    Searched full:program (Results 876 - 900 of 18885) sorted by null

<<31323334353637383940>>

  /cts/tests/tests/media/src/android/media/cts/
TextureRender.java 139 throw new RuntimeException("failed creating program");
190 throw new RuntimeException("failed creating program");
220 int program = GLES20.glCreateProgram(); local
222 if (program == 0) {
223 Log.e(TAG, "Could not create program");
225 GLES20.glAttachShader(program, vertexShader);
227 GLES20.glAttachShader(program, pixelShader);
229 GLES20.glLinkProgram(program);
231 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 0);
233 Log.e(TAG, "Could not link program: ")
    [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/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...]
opt.rst 7 :program:`opt` [*options*] [*filename*]
12 The :program:`opt` command is the modular LLVM optimizer and analyzer. It
15 function of :program:`opt` depends on whether the :option:`-analyze` option is
18 When :option:`-analyze` is specified, :program:`opt` performs various analyses
22 program.
24 While :option:`-analyze` is *not* given, :program:`opt` attempts to produce an
25 optimized output file. The optimizations available via :program:`opt` depend
30 If ``filename`` is omitted from the command line or is "``-``", :program:`opt`
35 :program:`opt` writes its output to the standard output.
42 Enable binary output on terminals. Normally, :program:`opt` will refuse t
    [all...]
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/scrollbar/
scrollbar.edc 36 run_program(PROGRAM:"hide");
63 run_program(PROGRAM:"show");
65 run_program(PROGRAM:"hide");
167 program {
173 program {
180 program {
186 program {
213 run_program(PROGRAM:"hide");
240 run_program(PROGRAM:"show");
242 run_program(PROGRAM:"hide")
    [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 87 #include "ceres/program.h"
98 ProgramEvaluator(const Evaluator::Options &options, Program* program)
100 program_(program),
101 jacobian_writer_(options, program),
110 BuildResidualLayout(*program, &residual_layout_);
111 evaluate_scratch_.reset(CreateEvaluatorScratch(*program,
291 static void BuildResidualLayout(const Program& program,
293 const vector<ResidualBlock*>& residual_blocks = program.residual_blocks()
    [all...]
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/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/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 26 /// combinations of passes to compile the program with. Compile the program with
42 outs() << "Generating reference output from raw program: \n";
43 if (!createReferenceFile(Program))
57 // Step 2: Run optimizer passes on the program and check for success.
59 outs() << "Running selected passes on program to test for crash: ";
65 if(runPasses(Program, PassesToRun, Filename, false)) {
79 compileProgram(Program, &Error);
88 // Step 4: Run the program and compare its output to the reference
92 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...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
ResourceManager.cpp 13 #include "libGLESv2/Program.h"
81 // Returns an unused shader/program name
104 // Returns an unused program/shader name
114 mProgramMap[handle] = new Program(this, handle);
178 void ResourceManager::deleteProgram(GLuint program)
180 ProgramMap::iterator programObject = mProgramMap.find(program);
262 Program *ResourceManager::getProgram(unsigned int handle)
264 ProgramMap::iterator program = mProgramMap.find(handle); local
266 if (program == mProgramMap.end())
272 return program->second
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerRendererChromium.h 113 const CCHeadsUpDisplay::Program* headsUpDisplayProgram() const { return m_headsUpDisplayProgram.get(); }
114 const RenderSurfaceChromium::Program* renderSurfaceProgram() const { return m_renderSurfaceProgram.get(); }
116 const LayerTilerChromium::Program* tilerProgram() const { return m_tilerProgram.get(); }
117 const CCCanvasLayerImpl::Program* canvasLayerProgram() const { return m_canvasLayerProgram.get(); }
118 const CCPluginLayerImpl::Program* pluginLayerProgram() const { return m_pluginLayerProgram.get(); }
209 OwnPtr<CCHeadsUpDisplay::Program> m_headsUpDisplayProgram;
210 OwnPtr<RenderSurfaceChromium::Program> m_renderSurfaceProgram;
212 OwnPtr<LayerTilerChromium::Program> m_tilerProgram;
213 OwnPtr<CCCanvasLayerImpl::Program> m_canvasLayerProgram;
216 OwnPtr<CCPluginLayerImpl::Program> m_pluginLayerProgram
    [all...]
RenderSurfaceChromium.cpp 107 const RenderSurfaceChromium::Program* program = layerRenderer()->renderSurfaceProgram(); local
109 ASSERT(program && program->initialized());
114 layerRenderer()->useShader(maskProgram->program());
129 layerRenderer()->useShader(program->program());
131 GLC(context3D, context3D->uniform1i(program->fragmentShader().samplerLocation(), 0));
132 shaderMatrixLocation = program->vertexShader().matrixLocation();
133 shaderAlphaLocation = program->fragmentShader().alphaLocation()
    [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...]
  /external/arduino/
license.txt 29 Foundation's software and to any other program whose authors commit to
46 For example, if you distribute copies of such a program, whether
63 Finally, any free program is threatened constantly by software
65 program will individually obtain patent licenses, in effect making the
66 program proprietary. To prevent this, we have made it clear that any
75 0. This License applies to any program or other work which contains
77 under the terms of this General Public License. The "Program", below,
78 refers to any such program or work, and a "work based on the Program"
79 means either the Program or any derivative work under copyright law
    [all...]
  /external/eigen/doc/
C00_QuickStartGuide.dox 13 \section GettingStartedFirstProgram A simple first program
15 Here is a rather simple program to get you started.
19 We will explain the program after telling you how to compile it.
22 \section GettingStartedCompiling Compiling and running your first program
24 There is no library to link to. The only thing that you need to keep in mind when compiling the above program is that the compiler must be able to find the Eigen header files. The directory in which you placed Eigen's source code must be in the include path. With GCC you use the -I option to achieve this, so you can compile the program with a command like this:
28 On Linux or Mac OS X, another option is to symlink or copy the Eigen folder into /usr/local/include/. This way, you can compile the program with:
32 When you run the program, it produces the following output:
37 \section GettingStartedExplanation Explanation of the first program
50 Here is another example, which combines matrices with vectors. Concentrate on the left-hand program for now; we will talk about the right-hand program later
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/16/changes/
android.renderscript.Program.html 10 android.renderscript.Program
74 Class android.renderscript.<A HREF="../../../../reference/android/renderscript/Program.html" target="_top"><font size="+2"><code>Program</code></font></A>
86 <A NAME="android.renderscript.Program.getConstant_added(int)"></A>
87 <nobr><code>Type</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Program.html#getConstant(int)" target="_top"><code>getConstant</code></A>(<code>int</code>)</nobr>
93 <A NAME="android.renderscript.Program.getConstantCount_added()"></A>
94 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Program.html#getConstantCount()" target="_top"><code>getConstantCount</code></A>()</nobr>
100 <A NAME="android.renderscript.Program.getTextureCount_added()"></A>
101 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Program.html#getTextureCount()" target="_top"><code>getTextureCount</code></A>()</nobr>
107 <A NAME="android.renderscript.Program.getTextureName_added(int)"></A
    [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...]
  /packages/apps/PackageInstaller/res/values-lt/
strings.xml 28 <string name="install_confirm_question" msgid="7295206719219043890">"Ar norite ?diegti ?i? program?? Jai bus suteikta prieiga prie:"</string>
29 <string name="install_confirm_question_no_perms" msgid="5918305641302873520">"Ar norite ?diegti ?i? program?? Jai nereikalinga jokia speciali prieiga."</string>
30 <string name="install_confirm_question_update" msgid="4624159567361487964">"Ar norite ?diegti ?ios esamos programos naujin?? Neprarasite esam? duomen?. Atnaujinus program? bus suteikta prieiga prie:"</string>
31 <string name="install_confirm_question_update_system" msgid="1302330093676416336">"Ar norite ?diegti ?ios integruotos programos naujin?? Neprarasite esam? duomen?. Atnaujinus program? bus suteikta prieiga prie:"</string>
48 <string name="unknown_apps_dlg_text" product="default" msgid="133213135679009316">"Saugumo sumetimais telefone nustatytas program?, ?sigyt? i? ne?inom? ?altini?, diegimo blokavimas."</string>
51 <string name="allow_source_dlg_title" msgid="7568985073502399415">"Naujas program? ?altinis"</string>
54 <string name="dlg_app_replacement_title" msgid="1232230739563820951">"Pakeisti program??"</string>
55 <string name="dlg_app_replacement_statement" msgid="2992911899989907492">"Diegiama programa pakeis kit? program?."\n\n"Bus i?saugoti visi ankstesni naudotojo duomenys."</string>
61 <string name="app_not_found_dlg_text" msgid="6107465056055095930">"Programa nerasta ?diegt? program? s?ra?e."</string>
62 <string name="uninstall_application_title" msgid="1860074100811653963">"Pa?alinti program?"</string
    [all...]

Completed in 630 milliseconds

<<31323334353637383940>>