/external/v8/test/cctest/ |
test-bignum-dtoa.cc | 97 double min_double = 5e-324; local 98 BignumDtoa(min_double, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point); 102 BignumDtoa(min_double, BIGNUM_DTOA_FIXED, 5, buffer, &length, &point); 107 BignumDtoa(min_double, BIGNUM_DTOA_PRECISION, 5, buffer, &length, &point);
|
test-fast-dtoa.cc | 38 double min_double = 5e-324; local 39 status = FastDtoa(min_double, FAST_DTOA_SHORTEST, 0, 123 double min_double = 5e-324; local 124 status = FastDtoa(min_double, FAST_DTOA_PRECISION, 5,
|
test-dtoa.cc | 112 double min_double = 5e-324; local 113 DoubleToAscii(min_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); 117 DoubleToAscii(min_double, DTOA_FIXED, 5, buffer, &sign, &length, &point); 123 DoubleToAscii(min_double, DTOA_PRECISION, 5, buffer, &sign, &length, &point);
|