Home | History | Annotate | Download | only in src

Lines Matching full:isnan

527     Assert.assertTrue(Float.isNaN(Math.min(1.0f, Float.NaN)));
528 Assert.assertTrue(Float.isNaN(Math.min(Float.NaN, 1.0f)));
544 Assert.assertTrue(Float.isNaN(Math.max(1.0f, Float.NaN)));
545 Assert.assertTrue(Float.isNaN(Math.max(Float.NaN, 1.0f)));
561 Assert.assertTrue(Double.isNaN(Math.min(1.0d, Double.NaN)));
562 Assert.assertTrue(Double.isNaN(Math.min(Double.NaN, 1.0d)));
578 Assert.assertTrue(Double.isNaN(Math.max(1.0d, Double.NaN)));
579 Assert.assertTrue(Double.isNaN(Math.max(Double.NaN, 1.0d)));
881 Assert.assertTrue(Double.isNaN(Double.longBitsToDouble(0x7FF4000000000000l)));
882 Assert.assertTrue(Double.isNaN(Double.longBitsToDouble(0xFFF4000000000000l)));
884 Assert.assertTrue(Double.isNaN(Double.longBitsToDouble(0x7FF8000000000000l)));
885 Assert.assertTrue(Double.isNaN(Double.longBitsToDouble(0xFFF8000000000000l)));
887 Assert.assertFalse(Double.isNaN(Double.longBitsToDouble(0x7FF0000000000000l)));
888 Assert.assertFalse(Double.isNaN(Double.longBitsToDouble(0xFFF0000000000000l)));
890 Assert.assertFalse(Double.isNaN(Double.longBitsToDouble(0x7FE0000000000000l)));
891 Assert.assertFalse(Double.isNaN(Double.longBitsToDouble(0xFFE0000000000000l)));
892 Assert.assertFalse(Double.isNaN(Double.longBitsToDouble(0x0010000000000000l)));
893 Assert.assertFalse(Double.isNaN(Double.longBitsToDouble(0x8010000000000000l)));
895 Assert.assertFalse(Double.isNaN(Double.longBitsToDouble(0x0000000000000000l)));
896 Assert.assertFalse(Double.isNaN(Double.longBitsToDouble(0x8000000000000000l)));
898 Assert.assertFalse(Double.isNaN(Double.longBitsToDouble(0x0008000000000000l)));
899 Assert.assertFalse(Double.isNaN(Double.longBitsToDouble(0x8008000000000000l)));
900 Assert.assertFalse(Double.isNaN(Double.longBitsToDouble(0x0000000000000001l)));
901 Assert.assertFalse(Double.isNaN(Double.longBitsToDouble(0x8000000000000001l)));
906 Assert.assertTrue(Float.isNaN(Float.intBitsToFloat(0x7FA00000)));
907 Assert.assertTrue(Float.isNaN(Float.intBitsToFloat(0xFFA00000)));
909 Assert.assertTrue(Float.isNaN(Float.intBitsToFloat(0x7FC00000)));
910 Assert.assertTrue(Float.isNaN(Float.intBitsToFloat(0xFFC00000)));
912 Assert.assertFalse(Float.isNaN(Float.intBitsToFloat(0x7F800000)));
913 Assert.assertFalse(Float.isNaN(Float.intBitsToFloat(0xFF800000)));
915 Assert.assertFalse(Float.isNaN(Float.intBitsToFloat(0x7F000000)));
916 Assert.assertFalse(Float.isNaN(Float.intBitsToFloat(0xFF000000)));
917 Assert.assertFalse(Float.isNaN(Float.intBitsToFloat(0x00800000)));
918 Assert.assertFalse(Float.isNaN(Float.intBitsToFloat(0x80800000)));
920 Assert.assertFalse(Float.isNaN(Float.intBitsToFloat(0x00000000)));
921 Assert.assertFalse(Float.isNaN(Float.intBitsToFloat(0x80000000)));
923 Assert.assertFalse(Float.isNaN(Float.intBitsToFloat(0x00400000)));
924 Assert.assertFalse(Float.isNaN(Float.intBitsToFloat(0x80400000)));
925 Assert.assertFalse(Float.isNaN(Float.intBitsToFloat(0x00000001)));
926 Assert.assertFalse(Float.isNaN(Float.intBitsToFloat(0x80000001)));
1042 Assert.assertTrue(Float.isNaN(StrictMath.min(1.0f, Float.NaN)));
1043 Assert.assertTrue(Float.isNaN(StrictMath.min(Float.NaN, 1.0f)));
1057 Assert.assertTrue(Float.isNaN(StrictMath.max(1.0f, Float.NaN)));
1058 Assert.assertTrue(Float.isNaN(StrictMath.max(Float.NaN, 1.0f)));
1072 Assert.assertTrue(Double.isNaN(StrictMath.min(1.0d, Double.NaN)));
1073 Assert.assertTrue(Double.isNaN(StrictMath.min(Double.NaN, 1.0d)));
1087 Assert.assertTrue(Double.isNaN(StrictMath.max(1.0d, Double.NaN)));
1088 Assert.assertTrue(Double.isNaN(StrictMath.max(Double.NaN, 1.0d)));