Lines Matching refs:Float
35 expectEquals32(-2147483648, round32(Float.NEGATIVE_INFINITY)); in main()
49 expectEquals32(2147483647, round32(Float.POSITIVE_INFINITY)); in main()
52 expectEquals32(-2147483648, round32(Math.nextAfter(-2147483648.0f, Float.NEGATIVE_INFINITY))); in main()
54 expectEquals32(-2147483520, round32(Math.nextAfter(-2147483648.0f, Float.POSITIVE_INFINITY))); in main()
57 expectEquals32(2147483520, round32(Math.nextAfter(2147483648.0f, Float.NEGATIVE_INFINITY))); in main()
59 expectEquals32(2147483647, round32(Math.nextAfter(2147483648.0f, Float.POSITIVE_INFINITY))); in main()
69 for (float f = -1.5f; f <= -1.499f; f = Math.nextAfter(f, Float.POSITIVE_INFINITY)) { in main()
100 Float.intBitsToFloat(0x7f800001), in main()
101 Float.intBitsToFloat(0x7fa00000), in main()
102 Float.intBitsToFloat(0x7fc00000), in main()
103 Float.intBitsToFloat(0x7fffffff), in main()
104 Float.intBitsToFloat(0xff800001), in main()
105 Float.intBitsToFloat(0xffa00000), in main()
106 Float.intBitsToFloat(0xffc00000), in main()
107 Float.intBitsToFloat(0xffffffff) in main()