HomeSort by relevance Sort by last modified time
    Searched defs:Interp (Results 1 - 8 of 8) sorted by null

  /external/swiftshader/third_party/LLVM/tools/llvm-stub/
llvm-stub.c 39 const char *Interp = getenv("LLVMINTERP");
41 if (Interp == 0) Interp = "lli";
46 Args[0] = Interp;
68 execvp(Interp, (char **)Args); /* POSIX execvp takes a char *const[]. */
70 execvp(Interp, Args); /* windows execvp takes a const char *const *. */
  /external/antlr/gunit/src/main/java/org/antlr/gunit/
Interp.java 37 public class Interp {
  /frameworks/av/media/libaudioprocessing/
AudioResampler.cpp 71 static inline int32_t Interp(int32_t x0, int32_t x1, uint32_t f) {
378 out[outputIndex++] += vl * Interp(mX0L, in[0], phaseFraction);
379 out[outputIndex++] += vr * Interp(mX0R, in[1], phaseFraction);
402 out[outputIndex++] += vl * Interp(in[inputIndex*2-2],
404 out[outputIndex++] += vr * Interp(in[inputIndex*2-1],
473 int32_t sample = Interp(mX0L, in[0], phaseFraction);
498 int32_t sample = Interp(in[inputIndex-1], in[inputIndex],
624 " mla r5, r0, r10, r5\n" /* vl*interp + out[] */\
627 " mla r4, r0, r11, r4\n" /* vr*interp + out[] */\
743 " mla r5, r12, r10, r5\n" /* vl*interp + out[] */
    [all...]
  /external/antlr/tool/src/main/java/org/antlr/tool/
Interp.java 44 * java Interp file.g tokens-to-ignore start-rule input-file
46 * java Interp C.g 'WS COMMENT' program t.c
51 public class Interp {
68 System.err.println("java Interp file.g tokens-to-ignore start-rule input-file");
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.h 65 struct tgsi_declaration_interp Interp;
  /external/swiftshader/third_party/LLVM/bindings/ocaml/executionengine/
executionengine_ocaml.c 173 LLVMExecutionEngineRef Interp;
175 if (LLVMCreateExecutionEngineForModule(&Interp, M, &Error))
177 return Interp;
183 LLVMExecutionEngineRef Interp;
185 if (LLVMCreateInterpreterForModule(&Interp, M, &Error))
187 return Interp;
  /external/virglrenderer/src/gallium/auxiliary/tgsi/
tgsi_parse.h 65 struct tgsi_declaration_interp Interp;
  /external/mesa3d/src/mesa/tnl/
t_context.h 369 tnl_interp_func interp; member in struct:tnl_clipspace
434 tnl_interp_func Interp;
435 /* The interp function is called by the clipping routines when we need

Completed in 754 milliseconds