Home
last modified time | relevance | path

Searched refs:half_way (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
Dstrtod.cc340 uint64_t half_way = one64 << (precision_digits_count - 1); in DiyFpStrtod() local
342 half_way *= kDenominator; in DiyFpStrtod()
345 if (precision_bits >= half_way + error) { in DiyFpStrtod()
353 if (half_way - error < precision_bits && precision_bits < half_way + error) { in DiyFpStrtod()
/external/chromium_org/v8/src/
Dstrtod.cc319 uint64_t half_way = one64 << (precision_digits_count - 1); in DiyFpStrtod() local
321 half_way *= kDenominator; in DiyFpStrtod()
324 if (precision_bits >= half_way + error) { in DiyFpStrtod()
332 if (half_way - error < precision_bits && precision_bits < half_way + error) { in DiyFpStrtod()
Djsregexp.cc5999 int half_way = (sample_subject->length() - kSampleSize) / 2; in Compile() local
6000 for (int i = Max(0, half_way); in Compile()