Home
last modified time | relevance | path

Searched refs:upper_boundary (Results 1 – 2 of 2) sorted by relevance

/external/v8/test/cctest/
Dtest-strtod.cc374 DiyFp upper_boundary; in CheckDouble() local
381 d.NormalizedBoundaries(&lower_boundary, &upper_boundary); in CheckDouble()
388 d.NormalizedBoundaries(&lower_boundary, &upper_boundary); in CheckDouble()
389 return CompareBignumToDiyFp(input_digits, exponent, upper_boundary) >= 0; in CheckDouble()
392 d.NormalizedBoundaries(&lower_boundary, &upper_boundary); in CheckDouble()
395 CompareBignumToDiyFp(input_digits, exponent, upper_boundary) <= 0; in CheckDouble()
398 CompareBignumToDiyFp(input_digits, exponent, upper_boundary) < 0; in CheckDouble()
/external/v8/src/
Dstrtod.cc377 DiyFp upper_boundary = Double(guess).UpperBoundary(); in BignumStrtod() local
390 boundary.AssignUInt64(upper_boundary.f()); in BignumStrtod()
396 if (upper_boundary.e() > 0) { in BignumStrtod()
397 boundary.ShiftLeft(upper_boundary.e()); in BignumStrtod()
399 input.ShiftLeft(-upper_boundary.e()); in BignumStrtod()