Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/LTO/
H A DLTO.cpp127 AddUnsigned(*Conf.RelocModel); in computeLTOCacheKey()
129 AddUnsigned(-1); in computeLTOCacheKey()
131 AddUnsigned(*Conf.CodeModel); in computeLTOCacheKey()
133 AddUnsigned(-1); in computeLTOCacheKey()
134 AddUnsigned(Conf.CGOptLevel); in computeLTOCacheKey()
135 AddUnsigned(Conf.CGFileType); in computeLTOCacheKey()
136 AddUnsigned(Conf.OptLevel); in computeLTOCacheKey()
137 AddUnsigned(Conf.Freestanding); in computeLTOCacheKey()
211 AddUnsigned(GS->isLive()); in computeLTOCacheKey()
264 AddUnsigned(S.TTRes.TheKind); in computeLTOCacheKey()
[all …]
/llvm-project-15.0.7/flang/include/flang/Evaluate/
H A Dinteger.h266 ValueWithCarry next{shifted.lower.AddUnsigned(Integer{digit})};
420 auto minus1{AddUnsigned(MASKR(bits))}; // { x-1, carry = x > 0 } in TRAILZ()
755 constexpr ValueWithCarry AddUnsigned(
774 ValueWithCarry sum{AddUnsigned(y)}; in AddSigned()
782 ValueWithCarry diff{AddUnsigned(y.Negate().value)}; in SubtractSigned()
862 auto incremented{product.lower.AddUnsigned(one)}; in MultiplyUnsigned()
865 product.upper = product.upper.AddUnsigned(one).value; in MultiplyUnsigned()
879 auto doubledTop{top.AddUnsigned(top)}; in MultiplyUnsigned()
881 remainder = remainder.AddUnsigned(remainder, doubledTop.carry).value; in MultiplyUnsigned()
883 quotient = quotient.AddUnsigned(quotient, nextBit).value; in MultiplyUnsigned()
[all …]
H A Dreal.h402 auto doubled{top.AddUnsigned(top)}; in NextQuotientBit()
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dreal.cpp124 auto sum{fraction.AddUnsigned(yFraction, carry)}; in Add()
340 auto next{fraction.AddUnsigned(one)}; in NEAREST()
563 GetFraction().AddUnsigned(Fraction{}, true)}; in Round()
/llvm-project-15.0.7/flang/unittests/Evaluate/
H A Dinteger.cpp172 auto sum{a.AddUnsigned(b)}; in exhaustiveTesting()