Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/
DFloat.java965 int thisBits = Float.floatToIntBits(f1); in compare() local
968 return (thisBits == anotherBits ? 0 : // Values are equal in compare()
969 (thisBits < anotherBits ? -1 : // (-0.0, 0.0) or (!NaN, NaN) in compare()
DDouble.java1138 long thisBits = Double.doubleToLongBits(d1); in compare() local
1141 return (thisBits == anotherBits ? 0 : // Values are equal in compare()
1142 (thisBits < anotherBits ? -1 : // (-0.0, 0.0) or (!NaN, NaN) in compare()