/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 | 95 const Function *PF = PBB->getParent(); 98 std::advance(RFI, std::distance(PF->getParent()->begin(), 99 Module::const_iterator(PF))); 102 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
|
/external/e2fsprogs/ext2ed/ |
ext2ed.h | 82 typedef void (*PF) (char *); /* Used to point to the dispatched functions */ 88 PF callback [MAX_COMMANDS_NUM]; 239 extern void add_user_command (struct struct_commands *ptr,char *name,char *description,PF callback);
|
/external/llvm/lib/ExecutionEngine/JIT/ |
JIT.cpp | 412 int (*PF)(int, char **, const char **) = 417 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), 426 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr; 430 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), 438 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr; 439 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue())); 444 int (*PF)(char *) = (int(*)(char *))(intptr_t)FPtr; 445 rv.IntVal = APInt(32, PF((char*)GVTOP(ArgValues[0]))); 630 Function *PF = jitstate->getPendingFunctions(locked).back(); 633 assert(!PF->hasAvailableExternallyLinkage() & [all...] |
/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/icu4c/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 | 832 Function *PF = OpenModule->getFunction(FnName); 833 if (PF && !PF->empty()) { 839 if (!PF) 840 PF = Function::Create(F->getFunctionType(), 844 return PF; [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
toy.cpp | 995 Function *PF = CurrentModule->getFunction(FnName); 996 if (PF && !PF->empty()) { 1002 if (!PF) 1003 PF = Function::Create(F->getFunctionType(), 1007 return PF; [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
toy.cpp | 733 Function *PF = OpenModule->getFunction(FnName); 734 if (PF && !PF->empty()) { 740 if (!PF) 741 PF = Function::Create(F->getFunctionType(), 745 return PF; [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
toy.cpp | 743 Function *PF = OpenModule->getFunction(FnName); 744 if (PF && !PF->empty()) { 750 if (!PF) 751 PF = Function::Create(F->getFunctionType(), 755 return PF; [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAG.cpp | 466 const MemSDNode *PF = cast<MemSDNode>(N); 467 ID.AddInteger(PF->getPointerInfo().getAddrSpace()); [all...] |