Searched defs:floatToIntBits (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DFloat.java180 * {@code floatToIntBits} must give the same value for both objects.
193 (floatToIntBits(this.value) == floatToIntBits(((Float) object).value));
202 public static native int floatToIntBits(float value); method in class:Float
208 * to {@link #floatToIntBits}).
224 return floatToIntBits(value);
422 int bitValue = floatToIntBits(f);

Completed in 39 milliseconds