Searched refs:twoToThe52 (Results 1 – 2 of 2) sorted by relevance
46 double twoToThe52 = Math.scalb(1.0, 52); // 2^52 in testRint() local89 {Math.nextDown(twoToThe52), twoToThe52}, in testRint()90 {twoToThe52, twoToThe52}, in testRint()91 {Math.nextUp(twoToThe52), Math.nextUp(twoToThe52)}, in testRint()
558 double twoToThe52 = (double)(1L << 52); // 2^52 in rint() local562 if (a < twoToThe52) { // E_min <= ilogb(a) <= 51 in rint()563 a = ((twoToThe52 + a ) - twoToThe52); in rint()