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

  /external/llvm/lib/ExecutionEngine/Orc/
OrcMCJITReplacement.cpp 31 void *FPtr = getPointerToFunction(F);
32 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
51 (int (*)(int, char **, const char **))(intptr_t)FPtr;
64 int (*PF)(int, char **) = (int (*)(int, char **))(intptr_t)FPtr;
76 int (*PF)(int) = (int (*)(int))(intptr_t)FPtr;
93 rv.IntVal = APInt(BitWidth, ((bool (*)())(intptr_t)FPtr)());
95 rv.IntVal = APInt(BitWidth, ((char (*)())(intptr_t)FPtr)());
97 rv.IntVal = APInt(BitWidth, ((short (*)())(intptr_t)FPtr)());
99 rv.IntVal = APInt(BitWidth, ((int (*)())(intptr_t)FPtr)());
101 rv.IntVal = APInt(BitWidth, ((int64_t (*)())(intptr_t)FPtr)());
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 482 void *FPtr = getPointerToFunction(F);
483 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
502 (int(*)(int, char **, const char **))(intptr_t)FPtr;
515 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
528 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
544 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
546 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
548 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
550 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
552 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 1063 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1066 double (*FP)() = (double (*)())(intptr_t)FPtr;
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 1045 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
1048 double (*FP)() = (double (*)())(intptr_t)FPtr;
    [all...]
toy.cpp     [all...]
  /external/clang/test/CXX/drs/
dr2xx.cpp 570 typedef void (*FPtr)(double x[]);
573 FPtr fp = &f<3>;
576 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 262 milliseconds