Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/
DFloat.java914 int anotherBits = Float.floatToIntBits(f2); in compare() local
916 return (thisBits == anotherBits ? 0 : // Values are equal in compare()
917 (thisBits < anotherBits ? -1 : // (-0.0, 0.0) or (!NaN, NaN) in compare()
DDouble.java1007 long anotherBits = Double.doubleToLongBits(d2); in compare() local
1009 return (thisBits == anotherBits ? 0 : // Values are equal in compare()
1010 (thisBits < anotherBits ? -1 : // (-0.0, 0.0) or (!NaN, NaN) in compare()