Home
last modified time | relevance | path

Searched refs:intBitsToFloat (Results 1 – 19 of 19) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/
DOldFloatTest.java68 assertEquals(Float.POSITIVE_INFINITY, Float.intBitsToFloat(0x7f800000)); in test_intBitsToFloatI()
69 assertEquals(Float.NEGATIVE_INFINITY, Float.intBitsToFloat(0xff800000)); in test_intBitsToFloatI()
71 assertEquals(Float.NaN, Float.intBitsToFloat(0x7f800001)); in test_intBitsToFloatI()
72 assertEquals(Float.NaN, Float.intBitsToFloat(0x7fffffff)); in test_intBitsToFloatI()
73 assertEquals(Float.NaN, Float.intBitsToFloat(0xff800001)); in test_intBitsToFloatI()
74 assertEquals(Float.NaN, Float.intBitsToFloat(0xffffffff)); in test_intBitsToFloatI()
DIntrinsicTest.java128 Float.intBitsToFloat(0); in testFloat_intBitsToFloat()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DFloatTest.java176 float r = Float.intBitsToFloat(bits); in test_floatToIntBitsF()
185 float f = Float.intBitsToFloat(i); in test_floatToRawIntBitsF()
225 float r = Float.intBitsToFloat(bits); in test_intBitsToFloatI()
490 float expected = Float.intBitsToFloat(expecteds[i]); in test_parseFloat_LString_NormalPositiveExponent()
539 float expected = Float.intBitsToFloat(expecteds[i]); in test_parseFloat_LString_NormalNegativeExponent()
589 float expected = Float.intBitsToFloat(expecteds[i]); in test_parseFloat_LString_MaxNormalBoundary()
639 float expected = Float.intBitsToFloat(expecteds[i]); in test_parseFloat_LString_MinNormalBoundary()
689 float expected = Float.intBitsToFloat(expecteds[i]); in test_parseFloat_LString_MaxSubNormalBoundary()
739 float expected = Float.intBitsToFloat(expecteds[i]); in test_parseFloat_LString_MinSubNormalBoundary()
789 float expected = Float.intBitsToFloat(expecteds[i]); in test_parseFloat_LString_ZeroBoundary()
[all …]
DMathTest.java1716 .intBitsToFloat(b1em126), -1))); in test_scalb_FI()
1999 .intBitsToFloat(tuple.value), tuple.factor))); in test_shiftIntBits_II()
2001 .intBitsToFloat(tuple.value), tuple.factor))); in test_shiftIntBits_II()
DStrictMathTest.java303 float f = Float.intBitsToFloat(0xffc00000); in test_copySign_FF()
/libcore/ojluni/src/main/java/java/lang/
DMath.java1236 return Float.intBitsToFloat(0x7fffffff & Float.floatToRawIntBits(a)); in abs()
1523 return Float.intBitsToFloat(1 << in ulp()
1805 return Float.intBitsToFloat((Float.floatToRawIntBits(sign) & in copySign()
2055 return Float.intBitsToFloat(transducer); in nextAfter()
2124 return Float.intBitsToFloat(Float.floatToRawIntBits(f) + in nextUp()
2198 return Float.intBitsToFloat(Float.floatToRawIntBits(f) + in nextDown()
2382 return Float.intBitsToFloat(((n + FloatConsts.EXP_BIAS) << in powerOfTwoF()
DFloat.java850 public static native float intBitsToFloat(int bits); in intBitsToFloat() method in Float
/libcore/benchmarks/src/benchmarks/regression/
DFloatBenchmark.java46 result = Float.intBitsToFloat(i); in timeIntBitsToFloat()
/libcore/ojluni/src/main/native/
DFloat.c63 NATIVE_METHOD(Float, intBitsToFloat, "(I)F"),
/libcore/ojluni/src/main/java/java/io/
DBits.java61 return Float.intBitsToFloat(getInt(b, off)); in getFloat()
DDataInputStream.java443 return Float.intBitsToFloat(readInt()); in readFloat()
DRandomAccessFile.java947 return Float.intBitsToFloat(readInt()); in readFloat()
/libcore/ojluni/annotations/hiddenapi/java/lang/
DFloat.java133 public static native float intBitsToFloat(int bits); in intBitsToFloat() method in Float
/libcore/ojluni/src/main/java/java/nio/
DBits.java437 return Float.intBitsToFloat(getIntL(bb, bi)); in getFloatL()
441 return Float.intBitsToFloat(getIntL(a)); in getFloatL()
445 return Float.intBitsToFloat(getIntB(bb, bi)); in getFloatB()
449 return Float.intBitsToFloat(getIntB(a)); in getFloatB()
DDirectByteBuffer.java759 return Float.intBitsToFloat(x); in getFloat()
/libcore/ojluni/annotations/sdk/nullability/java/lang/
DFloat.annotated.java83 public static native float intBitsToFloat(int bits); in intBitsToFloat() method in Float
/libcore/luni/src/test/java/libcore/java/io/
DDataOutputStreamTest.java72 os.writeFloat(Float.intBitsToFloat(0x01234567)); in test_writeFloat()
/libcore/ojluni/src/main/java/sun/misc/
DFloatingDecimal.java1697 return Float.intBitsToFloat(ieeeBits); in floatValue()
2398 float fValue = Float.intBitsToFloat(floatBits); in parseHexString()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
DByteBufferTest.java2199 return Float.intBitsToFloat(bytes2int(bytes, order)); in bytes2float()