/external/compiler-rt/ |
D | Makefile | 114 $(call Set,Tmp.Key,$(1)) 115 $(call Set,Tmp.Name,$($(Tmp.Key).Name)) 116 $(call Set,Tmp.Configs,$($(Tmp.Key).Configs)) 117 $(call Set,Tmp.ObjPath,$(ProjObjRoot)/$(Tmp.Name)) 120 $(Tmp.Name):: $(Tmp.Configs:%=$(Tmp.Name)-%) 121 .PHONY: $(Tmp.Name) 124 $(Verb) rm -rf $(Tmp.ObjPath) 127 $(foreach config,$(Tmp.Configs),\ 132 $(call Set,Tmp.Config,$(1)) 133 $(call Set,Tmp.ObjPath,$(ProjObjRoot)/$(Tmp.Name)/$(Tmp.Config)) [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | OwningPtr.h | 43 T *Tmp = Ptr; variable 45 delete Tmp; variable 51 T *Tmp = Ptr; in take() local 53 return Tmp; in take() 67 T *Tmp = RHS.Ptr; in swap() local 69 Ptr = Tmp; in swap() 97 T *Tmp = Ptr; variable 99 delete [] Tmp; 105 T *Tmp = Ptr; in take() local 107 return Tmp; in take() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | APSInt.cpp | 26 APInt Tmp(NumBits, Str, /*Radix=*/10); in APSInt() local 28 unsigned MinBits = Tmp.getMinSignedBits(); in APSInt() 30 Tmp = Tmp.trunc(MinBits); in APSInt() 31 *this = APSInt(Tmp, /*IsUnsigned=*/false); in APSInt() 34 unsigned ActiveBits = Tmp.getActiveBits(); in APSInt() 36 Tmp = Tmp.trunc(ActiveBits); in APSInt() 37 *this = APSInt(Tmp, /*IsUnsigned=*/true); in APSInt()
|
/external/llvm/lib/Support/ |
D | APSInt.cpp | 26 APInt Tmp(NumBits, Str, /*Radix=*/10); in APSInt() local 28 unsigned MinBits = Tmp.getMinSignedBits(); in APSInt() 30 Tmp = Tmp.trunc(MinBits); in APSInt() 31 *this = APSInt(Tmp, /*IsUnsigned=*/false); in APSInt() 34 unsigned ActiveBits = Tmp.getActiveBits(); in APSInt() 36 Tmp = Tmp.trunc(ActiveBits); in APSInt() 37 *this = APSInt(Tmp, /*IsUnsigned=*/true); in APSInt()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/ |
D | FunctionExtrasTest.cpp | 78 unique_function<long()> Tmp; in TEST() local 82 Tmp = std::move(C1); in TEST() 83 EXPECT_EQ(Tmp(), 1); in TEST() 87 Tmp = std::move(C2); in TEST() 88 EXPECT_EQ(Tmp(), 3); in TEST() 92 Tmp = std::move(C3); in TEST() 93 EXPECT_EQ(Tmp(), 6); in TEST() 97 Tmp = std::move(C4); in TEST() 98 EXPECT_EQ(Tmp(), 10); in TEST() 102 Tmp = std::move(C5); in TEST() [all …]
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | Triple.cpp | 558 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component in getVendorName() local 559 return Tmp.split('-').first; // Isolate second component in getVendorName() 563 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component in getOSName() local 564 Tmp = Tmp.split('-').second; // Strip second component in getOSName() 565 return Tmp.split('-').first; // Isolate third component in getOSName() 569 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component in getEnvironmentName() local 570 Tmp = Tmp.split('-').second; // Strip second component in getEnvironmentName() 571 return Tmp.split('-').second; // Strip third component in getEnvironmentName() 575 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component in getOSAndEnvironmentName() local 576 return Tmp.split('-').second; // Strip second component in getOSAndEnvironmentName()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Vectorize/ |
D | VPlanTest.cpp | 21 std::vector<VPInstruction *> Tmp = {__VA_ARGS__}; \ 23 Tmp.size()); \ 24 for (auto Pair : zip(Range1, make_range(Tmp.begin(), Tmp.end()))) \
|
/external/pdfium/third_party/lcms/src/ |
D | cmswtpnt.c | 202 cmsMAT3 Cone, Tmp; in ComputeChromaticAdaptation() local 205 Tmp = *Chad; in ComputeChromaticAdaptation() 206 if (!_cmsMAT3inverse(&Tmp, &Chad_Inv)) return FALSE; in ComputeChromaticAdaptation() 226 _cmsMAT3per(&Tmp, &Cone, Chad); in ComputeChromaticAdaptation() 227 _cmsMAT3per(Conversion, &Chad_Inv, &Tmp); in ComputeChromaticAdaptation() 254 cmsMAT3 Tmp; in _cmsAdaptMatrixToD50() local 260 Tmp = *r; in _cmsAdaptMatrixToD50() 261 _cmsMAT3per(r, &Bradford, &Tmp); in _cmsAdaptMatrixToD50()
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | Evaluator.h | 45 for (auto &Tmp : AllocaTmps) in ~Evaluator() 49 if (!Tmp->use_empty()) in ~Evaluator() 50 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType())); in ~Evaluator()
|
/external/compiler-rt/make/ |
D | lib_util.mk | 19 $(call Set,Tmp.SelectFunctionDir,$(call SelectFunctionDirs,$(1),$(2),$(3),$(4)))\ 20 $(if $(call streq,1,$(words $(Tmp.SelectFunctionDir))),\ 21 $(Tmp.SelectFunctionDir),\ 23 $(if $(call streq,0,$(words $(Tmp.SelectFunctionDir))),\
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | ManagedStatic.h | 67 void *Tmp = Ptr.load(std::memory_order_acquire); 68 if (!Tmp) 77 void *Tmp = Ptr.load(std::memory_order_acquire); 78 if (!Tmp)
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | ManagedStatic.h | 65 void *Tmp = Ptr.load(std::memory_order_acquire); 66 if (!Tmp) 75 void *Tmp = Ptr.load(std::memory_order_acquire); 76 if (!Tmp)
|
/external/llvm/include/llvm/Support/ |
D | ManagedStatic.h | 66 void *Tmp = Ptr.load(std::memory_order_acquire); 67 if (!Tmp) 76 void *Tmp = Ptr.load(std::memory_order_acquire); 77 if (!Tmp)
|
/external/swiftshader/third_party/LLVM/lib/AsmParser/ |
D | LLLexer.cpp | 152 char Tmp = BIn[3]; BIn[3] = 0; // Terminate string in UnEscapeLexed() local 154 BIn[3] = Tmp; // Restore character in UnEscapeLexed() 670 APInt Tmp(bits, StringRef(TokStart+3, len), 16); in LexIdentifier() local 671 uint32_t activeBits = Tmp.getActiveBits(); in LexIdentifier() 673 Tmp = Tmp.trunc(activeBits); in LexIdentifier() 674 APSIntVal = APSInt(Tmp, TokStart[0] == 'u'); in LexIdentifier() 788 APInt Tmp(numBits, StringRef(TokStart, Len), 10); in LexDigitOrNegative() local 790 uint32_t minBits = Tmp.getMinSignedBits(); in LexDigitOrNegative() 792 Tmp = Tmp.trunc(minBits); in LexDigitOrNegative() 793 APSIntVal = APSInt(Tmp, false); in LexDigitOrNegative() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-opt-report/ |
D | OptReport.cpp | 147 SmallVector<char, 8> Tmp; in collectLocationInfo() local 173 StringRef KeyName = Key->getValue(Tmp); in collectLocationInfo() 178 Pass = Value->getValue(Tmp); in collectLocationInfo() 183 Function = Value->getValue(Tmp); in collectLocationInfo() 193 StringRef DLKeyName = DLKey->getValue(Tmp); in collectLocationInfo() 198 File = Value->getValue(Tmp); in collectLocationInfo() 203 Value->getValue(Tmp).getAsInteger(10, Line); in collectLocationInfo() 208 Value->getValue(Tmp).getAsInteger(10, Column); in collectLocationInfo() 223 StringRef ArgKeyName = ArgKey->getValue(Tmp); in collectLocationInfo() 228 Value->getValue(Tmp).getAsInteger(10, VectorizationFactor); in collectLocationInfo() [all …]
|
/external/capstone/ |
D | MathExtras.h | 111 uint32_t Tmp = Value >> Shift; in CountLeadingZeros_32() local 112 if (Tmp) { in CountLeadingZeros_32() 113 Value = Tmp; in CountLeadingZeros_32() 151 uint64_t Tmp = Value >> Shift; in CountLeadingZeros_64() local 152 if (Tmp) { in CountLeadingZeros_64() 153 Value = Tmp; in CountLeadingZeros_64()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/ |
D | Evaluator.h | 47 for (auto &Tmp : AllocaTmps) in ~Evaluator() 51 if (!Tmp->use_empty()) in ~Evaluator() 52 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType())); in ~Evaluator()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/DynamicLibrary/ |
D | DynamicLibraryTest.cpp | 44 } Tmp; in FuncPtr() local 45 Tmp.P = Ptr; in FuncPtr() 46 return Tmp.F; in FuncPtr() 52 } Tmp; in PtrFunc() local 53 Tmp.F = Func; in PtrFunc() 54 return Tmp.P; in PtrFunc()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ValueTracking.cpp | 904 unsigned Tmp, Tmp2; in ComputeNumSignBits() local 917 Tmp = TyBits - U->getOperand(0)->getType()->getScalarSizeInBits(); in ComputeNumSignBits() 918 return ComputeNumSignBits(U->getOperand(0), TD, Depth+1) + Tmp; in ComputeNumSignBits() 921 Tmp = ComputeNumSignBits(U->getOperand(0), TD, Depth+1); in ComputeNumSignBits() 924 Tmp += C->getZExtValue(); in ComputeNumSignBits() 925 if (Tmp > TyBits) Tmp = TyBits; in ComputeNumSignBits() 930 Tmp += CI->getZExtValue(); in ComputeNumSignBits() 931 if (Tmp > TyBits) Tmp = TyBits; in ComputeNumSignBits() 934 return Tmp; in ComputeNumSignBits() 938 Tmp = ComputeNumSignBits(U->getOperand(0), TD, Depth+1); in ComputeNumSignBits() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | MathExtras.h | 159 uint32_t Tmp = Value >> Shift; in CountLeadingZeros_32() local 160 if (Tmp) { in CountLeadingZeros_32() 161 Value = Tmp; in CountLeadingZeros_32() 196 uint64_t Tmp = Value >> Shift; in CountLeadingZeros_64() local 197 if (Tmp) { in CountLeadingZeros_64() 198 Value = Tmp; in CountLeadingZeros_64()
|
/external/clang/tools/scan-build/libexec/ |
D | ccc-analyzer | 593 my $Tmp = $Arg; 597 $Tmp = $Arg . $ARGV[$i]; 599 push @CompileOpts,$Tmp; 639 my $Tmp = $Arg; 643 $Tmp = $Arg . $ARGV[$i]; 645 push @CompileOpts,$Tmp; 646 push @LinkOpts,$Tmp;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | RawByteChannel.h | 118 uint8_t Tmp = V ? 1 : 0; in serialize() local 120 C.appendBytes(reinterpret_cast<const char *>(&Tmp), 1)) in serialize() 126 uint8_t Tmp = 0; in deserialize() local 127 if (auto Err = C.readBytes(reinterpret_cast<char *>(&Tmp), 1)) in deserialize() 129 V = Tmp != 0; in deserialize()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngine.cpp | 473 ExplodedNodeSet Tmp(Pred); in ProcessInitializer() local 518 assert(Tmp.size() == 1 && "have not generated any new nodes yet"); in ProcessInitializer() 519 assert(*Tmp.begin() == Pred && "have not generated any new nodes yet"); in ProcessInitializer() 520 Tmp.clear(); in ProcessInitializer() 523 evalBind(Tmp, Init, Pred, FieldLoc, InitVal, /*isInit=*/true, &PP); in ProcessInitializer() 534 NodeBuilder Bldr(Tmp, Dst, *currBldrCtx); in ProcessInitializer() 535 for (ExplodedNodeSet::iterator I = Tmp.begin(), E = Tmp.end(); I != E; ++I) { in ProcessInitializer() 943 ExplodedNodeSet Tmp; in Visit() local 944 StmtNodeBuilder Bldr2(PreVisit, Tmp, *currBldrCtx); in Visit() 977 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, S, *this); in Visit() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/ |
D | LlvmState.cpp | 63 llvm::SmallVector<char, 16> Tmp; in canAssemble() local 64 llvm::raw_svector_ostream OS(Tmp); in canAssemble() 68 return Tmp.size() > 0; in canAssemble()
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyLowerBrUnless.cpp | 109 unsigned Tmp = MRI.createVirtualRegister(&WebAssembly::I32RegClass); in runOnMachineFunction() local 110 MFI.stackifyVReg(Tmp); in runOnMachineFunction() 111 BuildMI(MBB, MI, MI->getDebugLoc(), TII.get(WebAssembly::EQZ_I32), Tmp) in runOnMachineFunction() 113 Cond = Tmp; in runOnMachineFunction()
|