Searched refs:fast_worked (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/ |
D | dtoa.cc | 57 bool fast_worked; in DoubleToAscii() local 60 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, length, point); in DoubleToAscii() 63 fast_worked = FastFixedDtoa(v, requested_digits, buffer, length, point); in DoubleToAscii() 66 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits, in DoubleToAscii() 72 if (fast_worked) return; in DoubleToAscii()
|
/external/icu/icu4c/source/i18n/ |
D | double-conversion.cpp | 404 bool fast_worked; in DoubleToAscii() local 407 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, vector, length, point); in DoubleToAscii() 411 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST_SINGLE, 0, in DoubleToAscii() 415 fast_worked = FastFixedDtoa(v, requested_digits, vector, length, point); in DoubleToAscii() 418 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits, in DoubleToAscii() 423 fast_worked = false; in DoubleToAscii() 426 if (fast_worked) return; in DoubleToAscii()
|