HomeSort by relevance Sort by last modified time
    Searched refs:PF (Results 1 - 25 of 34) sorted by null

1 2

  /external/parameter-framework/upstream/test/functional-tests/include/
ParameterFramework.hpp 56 /** Alias to the Platform Connector PF.
57 * It should not be usefull as PF is a super set but is useful
61 using PF = CParameterMgrFullConnector;
71 void start() { mayFailCall(&PF::start); }
77 using PF::applyConfigurations;
78 using PF::getFailureOnMissingSubsystem;
79 using PF::getFailureOnFailedSettingsLoad;
80 using PF::getForceNoRemoteInterface;
81 using PF::setForceNoRemoteInterface;
82 using PF::getSchemaUri
    [all...]
Test.hpp 117 using PF = ParameterFramework;
119 void create(Config &&configFile) { mPf.reset(new PF{std::move(configFile)}); }
120 std::unique_ptr<PF> mPf;
123 /** PF that will log a warning at start. */
  /toolchain/binutils/binutils-2.25/gold/
defstd.cc 132 elfcpp::PF(0), // segment_flags_set
133 elfcpp::PF(0), // segment_flags_clear
146 elfcpp::PF(0), // segment_flags_set
147 elfcpp::PF(0), // segment_flags_clear
203 elfcpp::PF(0), // segment_flags_clear
217 elfcpp::PF(0), // segment_flags_clear
231 elfcpp::PF(0), // segment_flags_clear
245 elfcpp::PF(0), // segment_flags_clear
259 elfcpp::PF(0), // segment_flags_clear
symtab.h     [all...]
  /external/llvm/lib/ExecutionEngine/Orc/
OrcMCJITReplacement.cpp 50 int (*PF)(int, char **, const char **) =
55 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
64 int (*PF)(int, char **) = (int (*)(int, char **))(intptr_t)FPtr;
68 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
76 int (*PF)(int) = (int (*)(int))(intptr_t)FPtr;
77 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
  /external/llvm/lib/Target/
TargetSubtargetInfo.cpp 24 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD,
28 : MCSubtargetInfo(TT, CPU, FS, PF, PD, ProcSched, WPR, WL, RA, IS, OC, FP) {
  /external/wpa_supplicant_8/wpa_supplicant/examples/
p2p-action-udhcp.sh 8 PF=$2
10 if [ ! -r $PF ]; then
14 PID=`cat $PF`
20 rm $PF
p2p-action.sh 8 PF=$2
10 if [ ! -r $PF ]; then
14 PID=`cat $PF`
20 rm $PF
57 dhclient -pf /var/run/dhclient-$GIFNAME.pid \
  /external/llvm/lib/MC/
MCSubtargetInfo.cpp 41 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD,
45 : TargetTriple(TT), CPU(C), ProcFeatures(PF), ProcDesc(PD),
  /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/curl/projects/
build-openssl.bat 94 set "PF=%PROGRAMFILES%"
98 set "PF=%PROGRAMFILES(x86)%"
103 if not defined PF goto nopf
106 if not exist "%PF%\%VC_PATH%" goto novc
148 call "%PF%\%VC_PATH%\bin\vcvars32"
150 call "%PF%\%VC_PATH%\bin\vcvars32"
152 call "%PF%\%VC_PATH%\bin\vcvars32"
154 call "%PF%\%VC_PATH%\vcvarsall" %VCVARS_PLATFORM%
  /external/llvm/include/llvm/Target/
TargetSubtargetInfo.h 52 ArrayRef<SubtargetFeatureKV> PF,
  /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);
init.c 349 void add_user_command (struct struct_commands *ptr,char *name,char *description,PF callback)
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 501 int (*PF)(int, char **, const char **) =
506 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
515 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
519 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
528 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
529 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
  /external/llvm/include/llvm/MC/
MCSubtargetInfo.h 54 ArrayRef<SubtargetFeatureKV> PF,
  /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/clang/test/SemaCXX/
nullptr.cpp 24 void (*pf)() = nullptr;
25 pf = null;
78 template <int *PI, void (*PF)(), int A::*PM, void (A::*PMF)()>
  /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/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...]
  /toolchain/binutils/binutils-2.25/bfd/
peXXigen.c     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 553 if (const auto *PF = dyn_cast<Function>(
555 MMI.addPersonality(PF);

Completed in 5074 milliseconds

1 2