/external/parameter-framework/upstream/test/functional-tests/include/ |
D | ParameterFramework.hpp | 61 using PF = CParameterMgrFullConnector; typedef in parameterFramework::ParameterFramework 71 void start() { mayFailCall(&PF::start); } in 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; 83 using PF::setSchemaUri; 84 using PF::getValidateSchemasOnStart; [all …]
|
D | Test.hpp | 117 using PF = ParameterFramework; typedef in parameterFramework::LazyPF 119 void create(Config &&configFile) { mPf.reset(new PF{std::move(configFile)}); } in create() 120 std::unique_ptr<PF> mPf;
|
/external/linux-kselftest/tools/testing/selftests/x86/ |
D | test_FCOMI.c | 19 PF = 1 << 2, enumerator 21 ARITH = CF | PF | ZF, 111 if ((res_fcomi_nan_1 & ARITH) != (ZF|CF|PF)) { in test_qnan() 140 if ((res_fcomi_nan_1 & ARITH) != (ZF|CF|PF)) { in testu_qnan() 171 if ((res_fcomi_nan_1 & ARITH) != (ZF|CF|PF)) { in testu_snan() 254 if ((res_fcomi_nan_1 & ARITH) != (ZF|CF|PF)) { in testp_qnan() 282 if ((res_fcomi_nan_1 & ARITH) != (ZF|CF|PF)) { in testup_qnan() 316 err |= test(CF|ZF|PF); in main() 317 err |= test_qnan(CF|ZF|PF); in main() 318 err |= testu_qnan(CF|ZF|PF); in main() [all …]
|
D | test_FCMOV.c | 44 PF = 1 << 2, enumerator 83 err |= !(fcmovb(PF) == 1.0); err |= !(fcmovnb(PF) != 1.0); in main() 84 err |= !(fcmove(PF) == 1.0); err |= !(fcmovne(PF) != 1.0); in main() 85 err |= !(fcmovbe(PF) == 1.0); err |= !(fcmovnbe(PF) != 1.0); in main() 86 err |= !(fcmovu(PF) != 1.0); err |= !(fcmovnu(PF) == 1.0); in main()
|
/external/toolchain-utils/bin/ |
D | tc_pyformat | 7 PF=pyformat 11 if [[ -z "$(type -t ${PF})" ]]; then 12 echo "Error: ${PF} not in your path." 29 ${PF} ${PF_OPTIONS} $f 31 ${PF} --remove_shebang ${PF_OPTIONS} $f
|
/external/parameter-framework/upstream/doc/requirements/ |
D | requirements.md | 41 The Parameter Framework is abreviated as PF in the rest of the document. 46 Specificaly the PF contains 3 stacked abstraction layers: 82 The PF **SHOULD** be reusable between components. 86 PF instances **MUST NOT** mutate each others. 87 <note>This may be implemented by not sharing any mutable data between PF instances.</note> 88 <why>Different PF instances are expected to be completely independent thus accessing one should not… 104 <dd>System controlled by the PF. Not necessary material system. This term was 107 - historically the PF reference implementation was used to abstract hardware 115 A PF **MUST** be able to handle parameters. 116 <why>because the PF aims to abstract hardware and model it by parameters.</why> [all …]
|
/external/llvm/lib/ExecutionEngine/Orc/ |
D | OrcMCJITReplacement.cpp | 50 int (*PF)(int, char **, const char **) = in runFunction() local 55 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 64 int (*PF)(int, char **) = (int (*)(int, char **))(intptr_t)FPtr; in runFunction() local 68 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 76 int (*PF)(int) = (int (*)(int))(intptr_t)FPtr; in runFunction() local 77 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue())); in runFunction()
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
D | p2p-action-udhcp.sh | 8 PF=$2 10 if [ ! -r $PF ]; then 14 PID=`cat $PF` 20 rm $PF
|
D | p2p-action.sh | 8 PF=$2 10 if [ ! -r $PF ]; then 14 PID=`cat $PF` 20 rm $PF
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 145 int (*PF)(int, char **, const char **) = in runFunction() local 150 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 159 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr; in runFunction() local 163 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 172 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr; in runFunction() local 173 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue())); in runFunction()
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
D | JIT.cpp | 410 int (*PF)(int, char **, const char **) = in runFunction() local 415 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 424 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr; in runFunction() local 428 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 437 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr; in runFunction() local 438 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue())); in runFunction() 623 Function *PF = jitstate->getPendingFunctions(locked).back(); in runJITOnFunctionUnlocked() local 626 assert(!PF->hasAvailableExternallyLinkage() && in runJITOnFunctionUnlocked() 629 jitTheFunction(PF, locked); in runJITOnFunctionUnlocked() 633 updateFunctionStub(PF); in runJITOnFunctionUnlocked()
|
/external/llvm/lib/Target/ |
D | TargetSubtargetInfo.cpp | 22 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD, in TargetSubtargetInfo() argument 26 : MCSubtargetInfo(TT, CPU, FS, PF, PD, ProcSched, WPR, WL, RA, IS, OC, FP) { in TargetSubtargetInfo()
|
/external/curl/projects/ |
D | build-openssl.bat | 113 set "PF=%PROGRAMFILES%" 117 set "PF=%PROGRAMFILES(x86)%" 122 if not defined PF goto nopf 125 if not exist "%PF%\%VC_PATH%" goto novc 181 call "%PF%\%VC_PATH%\bin\vcvars32" 183 call "%PF%\%VC_PATH%\bin\vcvars32" 185 call "%PF%\%VC_PATH%\bin\vcvars32" 187 call "%PF%\%VC_PATH%\Auxiliary\Build\vcvarsall" %VCVARS_PLATFORM% 189 call "%PF%\%VC_PATH%\vcvarsall" %VCVARS_PLATFORM%
|
D | build-wolfssl.bat | 100 set "PF=%PROGRAMFILES%" 104 set "PF=%PROGRAMFILES(x86)%" 109 if not defined PF goto nopf 112 if not exist "%PF%\%VC_PATH%" goto novc 135 call "%PF%\%VC_PATH%\Auxiliary\Build\vcvarsall" %VCVARS_PLATFORM% 137 call "%PF%\%VC_PATH%\vcvarsall" %VCVARS_PLATFORM%
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
D | MCSubtargetInfo.cpp | 22 const SubtargetFeatureKV *PF, in InitMCSubtargetInfo() argument 30 ProcFeatures = PF; in InitMCSubtargetInfo()
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 516 int (*PF)(int, char **, const char **) = in runFunction() local 521 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 530 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr; in runFunction() local 534 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 543 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr; in runFunction() local 544 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue())); in runFunction()
|
/external/swiftshader/third_party/LLVM/tools/bugpoint/ |
D | ExtractFunction.cpp | 63 const Function *PF = PBB->getParent(); in deleteInstructionFromProgram() local 66 std::advance(RFI, std::distance(PF->getParent()->begin(), in deleteInstructionFromProgram() 67 Module::const_iterator(PF))); in deleteInstructionFromProgram() 70 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB))); in deleteInstructionFromProgram()
|
/external/llvm/lib/MC/ |
D | MCSubtargetInfo.cpp | 41 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD, in MCSubtargetInfo() argument 45 : TargetTriple(TT), CPU(C), ProcFeatures(PF), ProcDesc(PD), in MCSubtargetInfo()
|
/external/clang/test/SemaObjC/ |
D | block-explicit-return-type.m | 5 typedef float * PF; typedef 47 (void)^PF { return &gf; };
|
/external/e2fsprogs/ext2ed/ |
D | ext2ed.h | 78 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/llvm/tools/bugpoint/ |
D | ExtractFunction.cpp | 92 const Function *PF = PBB->getParent(); in deleteInstructionFromProgram() local 95 std::advance(RFI, std::distance(PF->getParent()->begin(), in deleteInstructionFromProgram() 96 Module::const_iterator(PF))); in deleteInstructionFromProgram() 99 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB))); in deleteInstructionFromProgram()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy.cpp | 744 Function *PF = OpenModule->getFunction(FnName); in getFunction() local 745 if (PF && !PF->empty()) { in getFunction() 751 if (!PF) in getFunction() 752 PF = Function::Create(F->getFunctionType(), in getFunction() 756 return PF; in getFunction()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 734 Function *PF = OpenModule->getFunction(FnName); in getFunction() local 735 if (PF && !PF->empty()) { in getFunction() 741 if (!PF) in getFunction() 742 PF = Function::Create(F->getFunctionType(), in getFunction() 746 return PF; in getFunction()
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCSubtargetInfo.h | 43 const SubtargetFeatureKV *PF,
|
/external/icu/icu4c/source/data/region/ |
D | sw_KE.txt | 25 PF{"Polinesia ya Ufaransa"}
|