Lines Matching refs:radix
948 radix = 10; in NumericLiteralParser()
1217 assert((radix == 8 || radix == 10) && "Unexpected radix"); in ParseDecimalOrOctalCommon()
1226 << StringRef(s, 1) << (radix == 8 ? 1 : 0); in ParseDecimalOrOctalCommon()
1234 radix = 10; in ParseDecimalOrOctalCommon()
1243 radix = 10; in ParseDecimalOrOctalCommon()
1325 radix = 16; in ParseNumberStartingWithZero()
1403 radix = 2; in ParseNumberStartingWithZero()
1423 radix = 8; in ParseNumberStartingWithZero()
1441 radix = 10; in ParseNumberStartingWithZero()
1474 if (alwaysFitsInto64Bits(radix, NumDigits)) { in GetIntegerValue()
1478 N = N * radix + llvm::hexDigitValue(*Ptr); in GetIntegerValue()
1489 llvm::APInt RadixVal(Val.getBitWidth(), radix); in GetIntegerValue()
1503 assert(C < radix && "NumericLiteralParser ctor should have rejected this"); in GetIntegerValue()
1552 assert(radix == 16 || radix == 10); in GetFixedPointValue()
1567 while (!IsExponentPart(*Ptr, radix == 16)) in GetFixedPointValue()
1575 if (alwaysFitsInto64Bits(radix, NumExpDigits)) { in GetFixedPointValue()
1605 if (radix == 10) in GetFixedPointValue()
1626 assert(C < radix && "NumericLiteralParser ctor should have rejected this"); in GetFixedPointValue()
1628 Val *= radix; in GetFixedPointValue()
1638 if (radix == 16) FractBaseShift *= 4; in GetFixedPointValue()
1643 uint64_t Base = (radix == 16) ? 2 : 10; in GetFixedPointValue()