Searched defs:PF (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/Target/
H A DTargetSubtargetInfo.cpp24 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD,
28 : MCSubtargetInfo(TT, CPU, FS, PF, PD, ProcSched, WPR, WL, RA, IS, OC, FP) {
22 TargetSubtargetInfo( const Triple &TT, StringRef CPU, StringRef FS, ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD, const SubtargetInfoKV *ProcSched, const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, const InstrStage *IS, const unsigned *OC, const unsigned *FP) argument
/external/llvm/lib/MC/
H A DMCSubtargetInfo.cpp41 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD,
45 : TargetTriple(TT), CPU(C), ProcFeatures(PF), ProcDesc(PD),
39 MCSubtargetInfo( const Triple &TT, StringRef C, StringRef FS, ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD, const SubtargetInfoKV *ProcSched, const MCWriteProcResEntry *WPR, const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA, const InstrStage *IS, const unsigned *OC, const unsigned *FP) argument
/external/llvm/tools/bugpoint/
H A DExtractFunction.cpp92 const Function *PF = PBB->getParent(); local
95 std::advance(RFI, std::distance(PF->getParent()->begin(),
96 Module::const_iterator(PF)));
99 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
/external/e2fsprogs/ext2ed/
H A Dext2ed.h78 typedef void (*PF) (char *); /* Used to point to the dispatched functions */ typedef
84 PF callback [MAX_COMMANDS_NUM];
235 extern void add_user_command (struct struct_commands *ptr,char *name,char *description,PF callback);
/external/icu/icu4c/source/test/perf/collationperf/
H A Dcollperf.cpp487 typedef int32_t (U_EXPORT2 *PF)(const UChar *, const UChar *); typedef
488 PF pf = u_strcmp;
490 //if (opt_strcmp && opt_win) {pf = (PF)wcscmp;} // Damn the difference between int32_t and int
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp833 Function *PF = OpenModule->getFunction(FnName); local
834 if (PF && !PF->empty()) {
840 if (!PF)
841 PF = Function::Create(F->getFunctionType(),
845 return PF;
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp901 Function *PF = CurrentModule->getFunction(FnName); local
902 if (PF && !PF->empty()) {
908 if (!PF)
909 PF = Function::Create(F->getFunctionType(),
913 return PF;
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp734 Function *PF = OpenModule->getFunction(FnName); local
735 if (PF && !PF->empty()) {
741 if (!PF)
742 PF = Function::Create(F->getFunctionType(),
746 return PF;
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy.cpp744 Function *PF = OpenModule->getFunction(FnName); local
745 if (PF && !PF->empty()) {
751 if (!PF)
752 PF = Function::Create(F->getFunctionType(),
756 return PF;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp510 const MemSDNode *PF = cast<MemSDNode>(N); local
511 ID.AddInteger(PF->getPointerInfo().getAddrSpace());

Completed in 265 milliseconds