Home
last modified time | relevance | path

Searched refs:AddUnsigned (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DLTO.cpp97 auto AddUnsigned = [&](unsigned I) { in computeLTOCacheKey() local
122 AddUnsigned(Conf.Options.RelaxELFRelocations); in computeLTOCacheKey()
123 AddUnsigned(Conf.Options.FunctionSections); in computeLTOCacheKey()
124 AddUnsigned(Conf.Options.DataSections); in computeLTOCacheKey()
125 AddUnsigned((unsigned)Conf.Options.DebuggerTuning); in computeLTOCacheKey()
129 AddUnsigned(*Conf.RelocModel); in computeLTOCacheKey()
131 AddUnsigned(-1); in computeLTOCacheKey()
133 AddUnsigned(*Conf.CodeModel); in computeLTOCacheKey()
135 AddUnsigned(-1); in computeLTOCacheKey()
136 AddUnsigned(Conf.CGOptLevel); in computeLTOCacheKey()
[all …]
/external/llvm-project/llvm/lib/LTO/
DLTO.cpp100 auto AddUnsigned = [&](unsigned I) { in computeLTOCacheKey() local
115 AddUnsigned(Conf.Options.RelaxELFRelocations); in computeLTOCacheKey()
116 AddUnsigned(Conf.Options.FunctionSections); in computeLTOCacheKey()
117 AddUnsigned(Conf.Options.DataSections); in computeLTOCacheKey()
118 AddUnsigned((unsigned)Conf.Options.DebuggerTuning); in computeLTOCacheKey()
122 AddUnsigned(*Conf.RelocModel); in computeLTOCacheKey()
124 AddUnsigned(-1); in computeLTOCacheKey()
126 AddUnsigned(*Conf.CodeModel); in computeLTOCacheKey()
128 AddUnsigned(-1); in computeLTOCacheKey()
129 AddUnsigned(Conf.CGOptLevel); in computeLTOCacheKey()
[all …]
/external/llvm-project/flang/include/flang/Evaluate/
Dinteger.h266 ValueWithCarry next{shifted.lower.AddUnsigned(Integer{digit})};
419 auto minus1{AddUnsigned(MASKR(bits))}; // { x-1, carry = x > 0 } in TRAILZ()
754 constexpr ValueWithCarry AddUnsigned(
773 ValueWithCarry sum{AddUnsigned(y)}; in AddSigned()
781 ValueWithCarry diff{AddUnsigned(y.Negate().value)}; in SubtractSigned()
861 auto incremented{product.lower.AddUnsigned(one)}; in MultiplyUnsigned()
864 product.upper = product.upper.AddUnsigned(one).value; in MultiplyUnsigned()
878 auto doubledTop{top.AddUnsigned(top)}; in MultiplyUnsigned()
880 remainder = remainder.AddUnsigned(remainder, doubledTop.carry).value; in MultiplyUnsigned()
882 quotient = quotient.AddUnsigned(quotient, nextBit).value; in MultiplyUnsigned()
[all …]
Dreal.h349 auto doubled{top.AddUnsigned(top)}; in NextQuotientBit()
/external/llvm-project/flang/lib/Evaluate/
Dreal.cpp124 auto sum{fraction.AddUnsigned(yFraction, carry)}; in Add()
362 GetFraction().AddUnsigned(Fraction{}, true)}; in Round()
/external/llvm-project/flang/unittests/Evaluate/
Dinteger.cpp172 auto sum{a.AddUnsigned(b)}; in exhaustiveTesting()