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

  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 92 const Function *PF = PBB->getParent();
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/
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/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 901 Function *PF = CurrentModule->getFunction(FnName);
902 if (PF && !PF->empty()) {
908 if (!PF)
909 PF = Function::Create(F->getFunctionType(),
913 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...]
  /toolchain/binutils/binutils-2.25/bfd/
peXXigen.c     [all...]
  /toolchain/binutils/binutils-2.25/binutils/
objdump.c 471 #define PF(x, y) \
474 PF (SEC_HAS_CONTENTS, "CONTENTS");
475 PF (SEC_ALLOC, "ALLOC");
476 PF (SEC_CONSTRUCTOR, "CONSTRUCTOR");
477 PF (SEC_LOAD, "LOAD");
478 PF (SEC_RELOC, "RELOC");
479 PF (SEC_READONLY, "READONLY");
480 PF (SEC_CODE, "CODE");
481 PF (SEC_DATA, "DATA");
482 PF (SEC_ROM, "ROM")
    [all...]
readelf.c     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 510 const MemSDNode *PF = cast<MemSDNode>(N);
511 ID.AddInteger(PF->getPointerInfo().getAddrSpace());
    [all...]
  /toolchain/binutils/binutils-2.25/elfcpp/
elfcpp.h 508 enum PF
    [all...]

Completed in 339 milliseconds