HomeSort by relevance Sort by last modified time
    Searched full:program (Results 1 - 25 of 14517) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
cmdline3.stderr.exp 1 valgrind: no program specified
cmdline5.vgtest 1 prog: no-such-program-my-friend
cmdline5.stderr.exp 1 valgrind: ./no-such-program-my-friend: No such file or directory
  /external/kernel-headers/original/linux/
auxvec.h 10 #define AT_EXECFD 2 /* file descriptor of program */
11 #define AT_PHDR 3 /* program headers for program */
12 #define AT_PHENT 4 /* size of program header entry */
13 #define AT_PHNUM 5 /* number of program headers */
17 #define AT_ENTRY 9 /* entry point of program */
18 #define AT_NOTELF 10 /* program is not ELF */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
auxvec.h 10 #define AT_EXECFD 2 /* file descriptor of program */
11 #define AT_PHDR 3 /* program headers for program */
12 #define AT_PHENT 4 /* size of program header entry */
13 #define AT_PHNUM 5 /* number of program headers */
17 #define AT_ENTRY 9 /* entry point of program */
18 #define AT_NOTELF 10 /* program is not ELF */
  /system/media/mca/filterfw/jni/
jni_native_program.cpp 39 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
40 return ToJBool(program && program->CallInit());
46 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
47 return ToJBool(program && lib_name && program->OpenLibrary(ToCppString(env, lib_name)));
53 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
54 return ToJBool(program && func_name && program->BindInitFunction(ToCppString(env, func_name)));
60 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz) local
69 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
78 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
85 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
94 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
101 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
113 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
122 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
134 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
180 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
185 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz); local
    [all...]
jni_shader_program.cpp 71 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
72 return program ? ToJBool(program->CompileAndLink()) : JNI_FALSE;
79 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
83 return ToJBool(program && program->SetUniformValue(c_key, c_value));
93 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
95 return program ? ToJObject(env, program->GetUniformValue(c_key)) : JNI_NULL;
102 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz) local
139 ShaderProgram* program = gl_env_ptr ? ShaderProgram::CreateIdentity(gl_env_ptr) : NULL; local
153 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
171 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
182 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
193 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
205 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
218 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
229 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
241 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
252 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
261 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
271 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
304 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz); local
    [all...]
  /external/llvm/utils/bugpoint/
RemoteRunSafely.sh 3 # Program: RemoteRunSafely.sh
5 # Synopsis: This script simply runs another program remotely using ssh.
6 # It always returns the another program exit code or exit with
7 # code 255 which indicates that the program could not be executed.
12 # <program> <args...>
15 # <hostname> is the remote host to execute the program,
18 # <program> is the path to the program to run,
19 # <args...> are the arguments to pass to the program.
26 "<program> <args...>
    [all...]
  /external/iptables/include/iptables/
internal.h 7 * Program's own name and version.
internal.h.in 7 * Program's own name and version.
  /system/media/mca/filterfw/java/android/filterfw/core/
ProgramVariable.java 25 private Program mProgram;
28 public ProgramVariable(Program program, String varName) {
29 mProgram = program;
33 public Program getProgram() {
43 throw new RuntimeException("Attempting to set program variable '" + mVarName
44 + "' but the program is null!");
51 throw new RuntimeException("Attempting to get program variable '" + mVarName
52 + "' but the program is null!");
ProgramPort.java 40 return "Program " + super.toString();
49 Program program = (Program)fieldValue; local
50 program.setHostValue(mVarName, mValue);
55 "Access to program field '" + mField.getName() + "' was denied!");
57 throw new RuntimeException("Non Program field '" + mField.getName()
  /external/llvm/utils/
check-each-file 9 program=$2
10 linker=./link-$program
11 echo "Building $program with llvm-native-gcc"
12 rm -f $program
13 gmake -e $program CC=llvm-native-gcc CXX=llvm-native-gxx
14 echo "Erasing $program and re-linking it"
15 rm -f $program
16 echo "rm -f $program" > $linker
17 gmake -n $program >> $linker
23 echo "$program appears to need a dummy __main function; adding one
    [all...]
  /external/mesa3d/src/pixelflinger2/
shader.cpp 31 #include "src/mesa/program/prog_parameter.h"
32 #include "src/mesa/program/prog_uniform.h"
206 gl_shader_program * program = hieralloc_zero(NULL, struct gl_shader_program); local
207 if (!program)
209 program->Attributes = hieralloc_zero(program, gl_program_parameter_list);
210 if (!program->Attributes) {
211 hieralloc_free(program);
214 program->Varying = hieralloc_zero(program, gl_program_parameter_list)
225 gl_shader_program * program = GGLShaderProgramCreate(); local
361 const gl_shader_program * program; member in struct:SymbolLookupContext
    [all...]
  /external/mesa3d/include/pixelflinger2/
pixelflinger2_interface.h 204 // runs active vertex shader using currently set program; no error checking
210 // rasters a vertex processed triangle using active program; scizors to frame surface
213 // rasters a vertex processed trapezoid using active program; scizors to frame surface
233 // creates empty program
236 // attaches a shader to program
237 void (* ShaderAttach)(const GGLInterface_t * iface, gl_shader_program_t * program,
240 // detaches a shader from program
241 void (* ShaderDetach)(const GGLInterface_t * iface, gl_shader_program_t * program,
244 // duplicates shaders to program, and links varyings / attributes
245 GLboolean (* ShaderProgramLink)(gl_shader_program_t * program, const char ** infoLog)
    [all...]
  /frameworks/base/libs/hwui/
Program.h 31 * A program holds a vertex and a fragment shader. It offers several utility
34 class Program {
37 * Creates a new program with the specified vertex and fragment
40 Program(const char* vertex, const char* fragment);
41 virtual ~Program();
44 * Binds this program to the GL context.
49 * Marks this program as unused. This will not unbind
50 * the program from the GL context.
65 * Indicates whether this program is currently in use with
73 * Indicates whether this program was correctly compiled and linked
    [all...]
  /external/llvm/autoconf/m4/
sanity_check.m4 1 dnl Check a program for version sanity. The test runs a program, passes it an
3 dnl output with a regular expression. If the output is non-empty, the program
5 dnl $1 - Name or full path of the program to run
11 AC_MSG_CHECKING([sanity for program ]$1)
20 AC_MSG_WARN([Program ]$1[ failed to pass sanity check.])
22 AC_MSG_ERROR([Program ]$1[ failed to pass sanity check.])
  /external/llvm/projects/sample/autoconf/m4/
sanity_check.m4 1 dnl Check a program for version sanity. The test runs a program, passes it an
3 dnl output with a regular expression. If the output is non-empty, the program
5 dnl $1 - Name or full path of the program to run
11 AC_MSG_CHECKING([sanity for program ]$1)
20 AC_MSG_WARN([Program ]$1[ failed to pass sanity check.])
22 AC_MSG_ERROR([Program ]$1[ failed to pass sanity check.])
  /external/clang/include/clang/Index/
Program.h 1 //===--- Program.h - Cross-translation unit information ---------*- C++ -*-===//
10 // This file declares the idx::Program interface.
25 class Program {
28 Program(const Program&); // do not implement
29 Program &operator=(const Program &); // do not implement
34 Program();
35 ~Program();
  /external/llvm/include/llvm/Support/
Program.h 1 //===- llvm/Support/Program.h ------------------------------------*- C++ -*-===//
10 // This file declares the llvm::sys::Program class.
28 /// class is used to specify the location of the Program.
31 class Program {
36 Program(const Program& other);
37 Program& operator=(const Program& other);
43 Program();
44 ~Program();
    [all...]
  /frameworks/base/libs/usb/tests/AccessoryChat/
README.txt 6 accessorychat - A C command-line program that communicates with AccessoryChat.
7 This program behaves as if it were a USB accessory.
9 command line program, which will work if run as root on an
  /external/bison/m4/
c-working.m4 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, write to the Free Software
28 [AC_MSG_FAILURE([cannot compile a simple C program])])
  /external/clang/test/Parser/
parser_overflow.c     [all...]
  /external/elfutils/libelf/
elf64_getehdr.c 1 /* Return program header table.
5 This program is free software; you can redistribute it and/or modify
9 This program is distributed in the hope that it will be useful,
15 along with this program; if not, write to the Free Software Foundation,
elf64_getphdr.c 1 /* Return program header table.
5 This program is free software; you can redistribute it and/or modify
9 This program is distributed in the hope that it will be useful,
15 along with this program; if not, write to the Free Software Foundation,

Completed in 747 milliseconds

1 2 3 4 5 6 7 8 91011>>