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

  /external/arduino/hardware/arduino/cores/arduino/
pins_arduino.c 73 #define PF 6
187 PF , // PF 0 ** 54 ** A0
188 PF , // PF 1 ** 55 ** A1
189 PF , // PF 2 ** 56 ** A2
190 PF , // PF 3 ** 57 ** A3
191 PF , // PF 4 ** 58 ** A4
    [all...]
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 96 const Function *PF = PBB->getParent();
99 std::advance(RFI, std::distance(PF->getParent()->begin(),
100 Module::const_iterator(PF)));
103 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 260 int (*PF)(int, char **, const char **) =
265 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
274 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
278 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
286 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
287 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
292 int (*PF)(char *) = (int(*)(char *))(intptr_t)FPtr;
293 rv.IntVal = APInt(32, PF((char*)GVTOP(ArgValues[0])));
477 Function *PF = jitstate->getPendingFunctions().back();
480 assert(!PF->hasAvailableExternallyLinkage() &
    [all...]
  /external/e2fsprogs/ext2ed/
ext2ed.h 78 typedef void (*PF) (char *); /* Used to point to the dispatched functions */
84 PF callback [MAX_COMMANDS_NUM];
235 extern void add_user_command (struct struct_commands *ptr,char *name,char *description,PF callback);
  /external/chromium_org/third_party/icu/source/test/perf/collationperf/
collperf.cpp 487 typedef int32_t (U_EXPORT2 *PF)(const UChar *, const UChar *);
488 PF pf = u_strcmp; local
489 if (opt_strcmpCPO) {pf = u_strcmpCodePointOrder;}
490 //if (opt_strcmp && opt_win) {pf = (PF)wcscmp;} // Damn the difference between int32_t and int
506 r = (*pf)((gSortedLines[line])->name, (gSortedLines[guess])->name);
    [all...]
  /external/icu/icu4c/source/test/perf/collationperf/
collperf.cpp 487 typedef int32_t (U_EXPORT2 *PF)(const UChar *, const UChar *);
488 PF pf = u_strcmp; local
489 if (opt_strcmpCPO) {pf = u_strcmpCodePointOrder;}
490 //if (opt_strcmp && opt_win) {pf = (PF)wcscmp;} // Damn the difference between int32_t and int
506 r = (*pf)((gSortedLines[line])->name, (gSortedLines[guess])->name);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 833 Function *PF = OpenModule->getFunction(FnName);
834 if (PF && !PF->empty()) {
840 if (!PF)
841 PF = Function::Create(F->getFunctionType(),
845 return PF;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 996 Function *PF = CurrentModule->getFunction(FnName);
997 if (PF && !PF->empty()) {
1003 if (!PF)
1004 PF = Function::Create(F->getFunctionType(),
1008 return PF;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 734 Function *PF = OpenModule->getFunction(FnName);
735 if (PF && !PF->empty()) {
741 if (!PF)
742 PF = Function::Create(F->getFunctionType(),
746 return PF;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 744 Function *PF = OpenModule->getFunction(FnName);
745 if (PF && !PF->empty()) {
751 if (!PF)
752 PF = Function::Create(F->getFunctionType(),
756 return PF;
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
RegionDataConstants.java 891 PF(new String[]{
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 527 const MemSDNode *PF = cast<MemSDNode>(N);
528 ID.AddInteger(PF->getPointerInfo().getAddrSpace());
    [all...]

Completed in 954 milliseconds