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

  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 436 void *FPtr = getPointerToFunction(F);
437 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
456 (int(*)(int, char **, const char **))(intptr_t)FPtr;
469 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
482 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
498 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
500 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
502 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
504 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
506 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 517 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
521 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 241 void *FPtr = getPointerToFunction(F);
242 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
261 (int(*)(int, char **, const char **))(intptr_t)FPtr;
274 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
286 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
292 int (*PF)(char *) = (int(*)(char *))(intptr_t)FPtr;
308 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
310 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
312 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
314 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 762 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
766 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 873 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
877 double (*FP)() = (double (*)())(intptr_t)FPtr;
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 1036 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1040 double (*FP)() = (double (*)())(intptr_t)FPtr;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 1064 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1067 double (*FP)() = (double (*)())(intptr_t)FPtr;
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 1046 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1049 double (*FP)() = (double (*)())(intptr_t)FPtr;
    [all...]
toy.cpp     [all...]
  /external/clang/test/CXX/drs/
dr2xx.cpp 547 typedef void (*FPtr)(double x[]);
550 FPtr fp = &f<3>;
553 FPtr gp = &g<>;
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]

Completed in 356 milliseconds