Lines Matching full:decimal
77 return c - 'A' + DECIMAL; in ToDigit()
80 return c - 'a' + DECIMAL; in ToDigit()
559 if ((radix == base::DECIMAL || radix == 0)) { in StringToNumber()
607 radix = DECIMAL; in StringToDoubleWithRadix()
661 int digit = static_cast<int>((current > '9') ? (current - 'a' + DECIMAL) : (current - '0')); in Carry()
722 int n; // decimal point in DoubleToCString()
855 num = 10 * num + (*(start + i) - '0'); // 10 : 10 represents the base of the decimal system in StringToInt()
971 radix = DECIMAL; in StringToDouble()
1010 // 7. deal with other radix except DECIMAL in StringToDouble()
1011 if (p == end || radix != DECIMAL) { in StringToDouble()
1021 if (radix == DECIMAL && *p == '.') { in StringToDouble()
1042 if (radix == DECIMAL && (p != end && (*p == 'e' || *p == 'E'))) { in StringToDouble()
1113 double powVal = ((radix == DECIMAL) && (exponentAbs < POWERS_OF_TEN_SIZE)) ? in Strtod()
1192 // 3. bigint not allow Infinity, decimal points, or exponents. in StringToBigInt()
1197 uint8_t radix = DECIMAL; in StringToBigInt()