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

  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
strtod.cc 210 int remaining_digits = local
213 (exponent - remaining_digits < kExactPowersOfTenSize)) {
215 // 10^remaining_digits. As a result the remaining exponent now fits
219 *result *= exact_powers_of_ten[remaining_digits];
220 *result *= exact_powers_of_ten[exponent - remaining_digits];
double-conversion.cc 132 int remaining_digits = digits_after_point - (-decimal_point) - length; local
133 result_builder->AddPadding('0', remaining_digits);
151 int remaining_digits = digits_after_point - (length - decimal_point); local
152 result_builder->AddPadding('0', remaining_digits);
  /external/chromium_org/v8/src/
strtod.cc 189 int remaining_digits = local
192 (exponent - remaining_digits < kExactPowersOfTenSize)) {
194 // 10^remaining_digits. As a result the remaining exponent now fits
198 *result *= exact_powers_of_ten[remaining_digits];
199 *result *= exact_powers_of_ten[exponent - remaining_digits];

Completed in 216 milliseconds