Searched refs:fast_worked (Results 1 – 5 of 5) sorted by relevance
/third_party/node/deps/v8/src/base/numbers/ |
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, buffer, in DoubleToAscii() 72 if (fast_worked) return; in DoubleToAscii()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | double-conversion-double-to-string.cpp | 428 bool fast_worked; in DoubleToAscii() local 431 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, vector, length, point); in DoubleToAscii() 435 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST_SINGLE, 0, in DoubleToAscii() 439 fast_worked = FastFixedDtoa(v, requested_digits, vector, length, point); in DoubleToAscii() 442 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits, in DoubleToAscii() 447 fast_worked = false; in DoubleToAscii() 450 if (fast_worked) return; in DoubleToAscii()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | double-conversion-double-to-string.cpp | 428 bool fast_worked; in DoubleToAscii() local 431 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, vector, length, point); in DoubleToAscii() 435 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST_SINGLE, 0, in DoubleToAscii() 439 fast_worked = FastFixedDtoa(v, requested_digits, vector, length, point); in DoubleToAscii() 442 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits, in DoubleToAscii() 447 fast_worked = false; in DoubleToAscii() 450 if (fast_worked) return; in DoubleToAscii()
|
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
D | double-to-string.cc | 412 bool fast_worked; in DoubleToAscii() local 415 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, vector, length, point); in DoubleToAscii() 418 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST_SINGLE, 0, in DoubleToAscii() 422 fast_worked = FastFixedDtoa(v, requested_digits, vector, length, point); in DoubleToAscii() 425 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits, in DoubleToAscii() 429 fast_worked = false; in DoubleToAscii() 432 if (fast_worked) return; in DoubleToAscii()
|
/third_party/icu/icu4c/source/i18n/ |
D | double-conversion-double-to-string.cpp | 428 bool fast_worked; in DoubleToAscii() local 431 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, vector, length, point); in DoubleToAscii() 435 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST_SINGLE, 0, in DoubleToAscii() 439 fast_worked = FastFixedDtoa(v, requested_digits, vector, length, point); in DoubleToAscii() 442 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits, in DoubleToAscii() 447 fast_worked = false; in DoubleToAscii() 450 if (fast_worked) return; in DoubleToAscii()
|