Searched refs:fast_worked (Results 1 – 1 of 1) sorted by relevance
/external/v8/src/ |
D | dtoa.cc | 79 bool fast_worked; in DoubleToAscii() local 82 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, length, point); in DoubleToAscii() 85 fast_worked = FastFixedDtoa(v, requested_digits, buffer, length, point); in DoubleToAscii() 88 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits, in DoubleToAscii() 93 fast_worked = false; in DoubleToAscii() 95 if (fast_worked) return; in DoubleToAscii()
|