Searched refs:TestFP16ToFloatRawIntBits (Results 1 – 1 of 1) sorted by relevance
23 public static int TestFP16ToFloatRawIntBits(short half) { in TestFP16ToFloatRawIntBits() method in Main120 assertEquals(0xffc02000, TestFP16ToFloatRawIntBits((short)(0xfc01))); // SNaN->QNaN in testToFloat()121 assertEquals(0xffffe000, TestFP16ToFloatRawIntBits((short)(0xfdff))); // SNaN->QNaN in testToFloat()122 assertEquals(0xffc00000, TestFP16ToFloatRawIntBits((short)(0xfe00))); // QNaN->QNaN in testToFloat()123 assertEquals(0xffffe000, TestFP16ToFloatRawIntBits((short)(0xffff))); // QNaN->QNaN in testToFloat()