HomeSort by relevance Sort by last modified time
    Searched refs:FastDtoa (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
fast-dtoa.h 47 // FastDtoa will produce at most kFastDtoaMaximalLength digits. This does not
74 // If there are two values that are equally close, then FastDtoa returns
77 bool FastDtoa(double d,
double-conversion.cc 391 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, vector, length, point);
397 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits,
fast-dtoa.cc     [all...]
  /external/chromium_org/v8/src/
fast-dtoa.h 21 // FastDtoa will produce at most kFastDtoaMaximalLength digits. This does not
48 // If there are two values that are equally close, then FastDtoa returns
51 bool FastDtoa(double d,
dtoa.cc 62 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, length, point);
68 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits,
fast-dtoa.cc 686 bool FastDtoa(double v,
  /external/chromium_org/v8/test/cctest/
test-fast-dtoa.cc 64 status = FastDtoa(min_double, FAST_DTOA_SHORTEST, 0,
71 status = FastDtoa(max_double, FAST_DTOA_SHORTEST, 0,
77 status = FastDtoa(4294967272.0, FAST_DTOA_SHORTEST, 0,
83 status = FastDtoa(4.1855804968213567e298, FAST_DTOA_SHORTEST, 0,
89 status = FastDtoa(5.5626846462680035e-309, FAST_DTOA_SHORTEST, 0,
95 status = FastDtoa(2147483648.0, FAST_DTOA_SHORTEST, 0,
101 status = FastDtoa(3.5844466002796428e+298, FAST_DTOA_SHORTEST, 0,
103 if (status) { // Not all FastDtoa variants manage to compute this number.
110 status = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, &length, &point);
118 status = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, &length, &point)
    [all...]

Completed in 211 milliseconds