/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/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-10.0/llvm/lib/Support/ |
D | APSInt.cpp | 25 APInt Tmp(NumBits, Str, /*radix=*/10); in APSInt() local 27 unsigned MinBits = Tmp.getMinSignedBits(); in APSInt() 29 Tmp = Tmp.trunc(MinBits); in APSInt() 30 *this = APSInt(Tmp, /*isUnsigned=*/false); in APSInt() 33 unsigned ActiveBits = Tmp.getActiveBits(); in APSInt() 35 Tmp = Tmp.trunc(ActiveBits); in APSInt() 36 *this = APSInt(Tmp, /*isUnsigned=*/true); in APSInt()
|
D | Error.cpp | 159 std::string Tmp = toString(unwrap(Err)); in LLVMGetErrorMessage() local 160 char *ErrMsg = new char[Tmp.size() + 1]; in LLVMGetErrorMessage() 161 memcpy(ErrMsg, Tmp.data(), Tmp.size()); in LLVMGetErrorMessage() 162 ErrMsg[Tmp.size()] = '\0'; in LLVMGetErrorMessage()
|
/external/llvm-project/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(std::max<unsigned>(1, MinBits)); in APSInt() 31 *this = APSInt(Tmp, /*isUnsigned=*/false); in APSInt() 34 unsigned ActiveBits = Tmp.getActiveBits(); in APSInt() 36 Tmp = Tmp.trunc(std::max<unsigned>(1, ActiveBits)); in APSInt() 37 *this = APSInt(Tmp, /*isUnsigned=*/true); in APSInt()
|
D | Error.cpp | 159 std::string Tmp = toString(unwrap(Err)); in LLVMGetErrorMessage() local 160 char *ErrMsg = new char[Tmp.size() + 1]; in LLVMGetErrorMessage() 161 memcpy(ErrMsg, Tmp.data(), Tmp.size()); in LLVMGetErrorMessage() 162 ErrMsg[Tmp.size()] = '\0'; in LLVMGetErrorMessage()
|
/external/llvm-project/clang/test/CodeGen/ |
D | union-tbaa1.c | 12 vect32 Tmp[4][2]; in fred() local 22 Tmp[*Index][0].uw = Arr[*Index][0] * Num; in fred() 26 Tmp[*Index][1].uw = Arr[*Index][1] * Num; in fred() 33 Vec[0] = Tmp[*Index][0].uh[1]; in fred() 39 Vec[1] = Tmp[*Index][1].uh[1]; in fred() 40 bar(Tmp); in fred()
|
/external/llvm-project/llvm/lib/Target/SystemZ/ |
D | SystemZCopyPhysRegs.cpp | 90 Register Tmp = MRI->createVirtualRegister(&SystemZ::GR32BitRegClass); in visitMBB() local 92 BuildMI(MBB, MI, DL, TII->get(SystemZ::IPM), Tmp); in visitMBB() 94 BuildMI(MBB, MI, DL, TII->get(SystemZ::EAR), Tmp).addReg(SrcReg); in visitMBB() 95 MI->getOperand(1).setReg(Tmp); in visitMBB() 100 Register Tmp = MRI->createVirtualRegister(&SystemZ::GR32BitRegClass); in visitMBB() local 101 MI->getOperand(0).setReg(Tmp); in visitMBB() 102 BuildMI(MBB, MBBI, DL, TII->get(SystemZ::SAR), DstReg).addReg(Tmp); in visitMBB()
|
/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
D | TargetProcessControlTypes.h | 110 CWrapperFunctionResult Tmp; variable 111 zeroInit(Tmp); 112 std::swap(Tmp, Other.R); 113 std::swap(R, Tmp); 124 CWrapperFunctionResult Tmp; in release() local 125 zeroInit(Tmp); in release() 126 std::swap(R, Tmp); in release() 127 return Tmp; in release()
|
/external/oboe/samples/RhythmGame/third_party/glm/gtc/ |
D | round.inl | 91 genType Tmp = Source - genType(1); local 92 return Tmp + (Multiple - (Tmp % Multiple)); 104 genType Tmp = Source - genType(1); local 105 return Tmp + (Multiple - (Tmp % Multiple)); 138 genType Tmp = Source + genType(1); local 139 return Tmp - Tmp % Multiple - Multiple; 154 genType Tmp = Source + genType(1); local 155 return Tmp - Tmp % Multiple - Multiple; 173 genType Tmp = Source + genType(1); local 174 return Tmp - std::fmod(Tmp, Multiple) - Multiple; [all …]
|
/external/llvm-project/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/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | rotate_normalized_axis.inl | 51 tvec3<T, P> const Tmp(v); local 56 …return q * tquat<T, P>(cos(AngleRad * static_cast<T>(0.5)), Tmp.x * Sin, Tmp.y * Sin, Tmp.z * Sin); 57 …tc::quaternion::cross(q, tquat<T, P>(cos(AngleRad * T(0.5)), Tmp.x * fSin, Tmp.y * fSin, Tmp.z * f…
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | SubtargetFeature.cpp | 34 SmallVector<StringRef, 3> Tmp; in Split() local 35 S.split(Tmp, ',', -1, false /* KeepEmpty */); in Split() 36 V.assign(Tmp.begin(), Tmp.end()); in Split()
|
/external/llvm-project/llvm/lib/MC/ |
D | SubtargetFeature.cpp | 34 SmallVector<StringRef, 3> Tmp; in Split() local 35 S.split(Tmp, ',', -1, false /* KeepEmpty */); in Split() 36 V.reserve(Tmp.size()); in Split() 37 for (StringRef T : Tmp) in Split()
|
/external/llvm-project/lldb/test/API/commands/expression/xvalue/ |
D | main.cpp | 1 struct Tmp struct 6 Tmp foo() { return Tmp(); } in foo() argument
|
/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/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 | 86 void *Tmp = Ptr.load(std::memory_order_acquire); 87 if (!Tmp) 96 void *Tmp = Ptr.load(std::memory_order_acquire); 97 if (!Tmp)
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | Evaluator.h | 46 for (auto &Tmp : AllocaTmps) in ~Evaluator() 50 if (!Tmp->use_empty()) in ~Evaluator() 51 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType())); in ~Evaluator()
|
/external/llvm-project/llvm/include/llvm/Transforms/Utils/ |
D | Evaluator.h | 46 for (auto &Tmp : AllocaTmps) in ~Evaluator() 50 if (!Tmp->use_empty()) in ~Evaluator() 51 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType())); in ~Evaluator()
|
/external/pdfium/third_party/lcms/src/ |
D | cmswtpnt.c | 201 cmsMAT3 Cone, Tmp; in ComputeChromaticAdaptation() local 204 Tmp = *Chad; in ComputeChromaticAdaptation() 205 if (!_cmsMAT3inverse(&Tmp, &Chad_Inv)) return FALSE; in ComputeChromaticAdaptation() 225 _cmsMAT3per(&Tmp, &Cone, Chad); in ComputeChromaticAdaptation() 226 _cmsMAT3per(Conversion, &Chad_Inv, &Tmp); in ComputeChromaticAdaptation() 253 cmsMAT3 Tmp; in _cmsAdaptMatrixToD50() local 259 Tmp = *r; in _cmsAdaptMatrixToD50() 260 _cmsMAT3per(r, &Bradford, &Tmp); in _cmsAdaptMatrixToD50()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | ManagedStatic.h | 87 void *Tmp = Ptr.load(std::memory_order_acquire); 88 if (!Tmp) 97 void *Tmp = Ptr.load(std::memory_order_acquire); 98 if (!Tmp)
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | ManagedStatic.h | 87 void *Tmp = Ptr.load(std::memory_order_acquire); 88 if (!Tmp) 97 void *Tmp = Ptr.load(std::memory_order_acquire); 98 if (!Tmp)
|
/external/llvm-project/llvm/unittests/Support/DynamicLibrary/ |
D | DynamicLibraryTest.cpp | 43 } Tmp; in FuncPtr() local 44 Tmp.P = Ptr; in FuncPtr() 45 return Tmp.F; in FuncPtr() 51 } Tmp; in PtrFunc() local 52 Tmp.F = Func; in PtrFunc() 53 return Tmp.P; in PtrFunc()
|