Searched refs:anotherBits (Results 1 – 2 of 2) sorted by relevance
915 int anotherBits = Float.floatToIntBits(f2); in compare() local917 return (thisBits == anotherBits ? 0 : // Values are equal in compare()918 (thisBits < anotherBits ? -1 : // (-0.0, 0.0) or (!NaN, NaN) in compare()
1008 long anotherBits = Double.doubleToLongBits(d2); in compare() local1010 return (thisBits == anotherBits ? 0 : // Values are equal in compare()1011 (thisBits < anotherBits ? -1 : // (-0.0, 0.0) or (!NaN, NaN) in compare()