Lines Matching full:decimal
48 return c - 'A' + DECIMAL; in ToDigit()
51 return c - 'a' + DECIMAL; in ToDigit()
204 radix = DECIMAL; in StringToDoubleWithRadix()
257 int digit = static_cast<int>((current > '9') ? (current - 'a' + DECIMAL) : (current - '0')); in Carry()
353 …// that k is the number of digits in the decimal representation of s and that s is not divisible b… in NumberToString()
381 … // 6. If k ≤ n ≤ 21, return the String consisting of the code units of the k digits of the decimal in NumberToString()
387 …// decimal representation of s, followed by the code unit 0x002E (FULL STOP), followed by the code… in NumberToString()
388 // the remaining k−n digits of the decimal representation of s. in NumberToString()
394 // code units of the k digits of the decimal representation of s. in NumberToString()
404 // the decimal representation of the integer abs(n−1) (with no leading zeroes). in NumberToString()
513 radix = DECIMAL; in StringToDouble()
552 // 7. deal with other radix except DECIMAL in StringToDouble()
553 if (p == end || radix != DECIMAL) { in StringToDouble()
562 if (radix == DECIMAL && *p == '.') { in StringToDouble()
583 if (radix == DECIMAL && (p != end && (*p == 'e' || *p == 'E'))) { in StringToDouble()
720 // 3. bigint not allow Infinity, decimal points, or exponents. in StringToBigInt()
725 uint8_t radix = DECIMAL; in StringToBigInt()