Searched defs:remaining_decimals (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/
H A Dstrtod.cc131 // If remaining_decimals is zero then the returned DiyFp is accurate.
135 int* remaining_decimals) {
140 *remaining_decimals = 0;
149 *remaining_decimals = buffer.length() - read_digits;
238 int remaining_decimals;
239 ReadDiyFp(buffer, &input, &remaining_decimals);
241 // If remaining_decimals is different than 0 than the error is at most
248 exponent += remaining_decimals;
249 int64_t error = (remaining_decimals == 0 ? 0 : kDenominator / 2);
133 ReadDiyFp(Vector<const char> buffer, DiyFp* result, int* remaining_decimals) argument

Completed in 94 milliseconds