Lines Matching full:decimal
79 return c - 'A' + DECIMAL; in ToDigit()
82 return c - 'a' + DECIMAL; in ToDigit()
561 if ((radix == base::DECIMAL || radix == 0)) { in StringToNumber()
609 radix = DECIMAL; in StringToDoubleWithRadix()
663 int digit = static_cast<int>((current > '9') ? (current - 'a' + DECIMAL) : (current - '0')); in Carry()
723 int n; // decimal point in DoubleToEcmaString()
856 num = 10 * num + (*(start + i) - '0'); // 10 : 10 represents the base of the decimal system in StringToInt()
972 radix = DECIMAL; in StringToDouble()
1011 // 7. deal with other radix except DECIMAL in StringToDouble()
1012 if (p == end || radix != DECIMAL) { in StringToDouble()
1022 if (radix == DECIMAL && *p == '.') { in StringToDouble()
1043 if (radix == DECIMAL && (p != end && (*p == 'e' || *p == 'E'))) { in StringToDouble()
1114 double powVal = ((radix == DECIMAL) && (exponentAbs < POWERS_OF_TEN_SIZE)) ? in Strtod()
1185 // 3. bigint not allow Infinity, decimal points, or exponents. in StringToBigInt()
1190 uint8_t radix = DECIMAL; in StringToBigInt()