Searched refs:thisBits (Results 1 – 2 of 2) sorted by relevance
913 int thisBits = Float.floatToIntBits(f1); in compare() local916 return (thisBits == anotherBits ? 0 : // Values are equal in compare()917 (thisBits < anotherBits ? -1 : // (-0.0, 0.0) or (!NaN, NaN) in compare()
1006 long thisBits = Double.doubleToLongBits(d1); in compare() local1009 return (thisBits == anotherBits ? 0 : // Values are equal in compare()1010 (thisBits < anotherBits ? -1 : // (-0.0, 0.0) or (!NaN, NaN) in compare()