OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PF
(Results
1 - 4
of
4
) sorted by null
/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(),
439
int (*
PF
)(int) = (int(*)(int))(intptr_t)FPtr;
440
rv.IntVal = APInt(32,
PF
(ArgValues[0].IntVal.getZExtValue()));
624
Function *
PF
= jitstate->getPendingFunctions(locked).back();
627
assert(!
PF
->hasAvailableExternallyLinkage() &&
630
jitTheFunction(
PF
, locked);
634
updateFunctionStub(
PF
);
[
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
...]
Completed in 1117 milliseconds