Home
last modified time | relevance | path

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

/libcore/ojluni/src/test/java/lang/Math/
DRint.java46 double twoToThe52 = Math.scalb(1.0, 52); // 2^52 in testRint() local
89 {Math.nextDown(twoToThe52), twoToThe52}, in testRint()
90 {twoToThe52, twoToThe52}, in testRint()
91 {Math.nextUp(twoToThe52), Math.nextUp(twoToThe52)}, in testRint()
/libcore/ojluni/src/main/java/java/lang/
DStrictMath.java558 double twoToThe52 = (double)(1L << 52); // 2^52 in rint() local
562 if (a < twoToThe52) { // E_min <= ilogb(a) <= 51 in rint()
563 a = ((twoToThe52 + a ) - twoToThe52); in rint()