Lines Matching refs:less

277         assertTrue(FP16.less(FP16.NEGATIVE_INFINITY, FP16.POSITIVE_INFINITY));  in testLess()
278 assertTrue(FP16.less(FP16.MAX_VALUE, FP16.POSITIVE_INFINITY)); in testLess()
279 assertFalse(FP16.less(FP16.POSITIVE_INFINITY, FP16.MAX_VALUE)); in testLess()
280 assertFalse(FP16.less(FP16.LOWEST_VALUE, FP16.NEGATIVE_INFINITY)); in testLess()
281 assertTrue(FP16.less(FP16.NEGATIVE_INFINITY, FP16.LOWEST_VALUE)); in testLess()
282 assertFalse(FP16.less(FP16.POSITIVE_ZERO, FP16.NEGATIVE_ZERO)); in testLess()
283 assertFalse(FP16.less(FP16.NEGATIVE_ZERO, FP16.POSITIVE_ZERO)); in testLess()
284 assertFalse(FP16.less(FP16.NaN, FP16.toHalf(12.3f))); in testLess()
285 assertFalse(FP16.less(FP16.toHalf(12.3f), FP16.NaN)); in testLess()
286 assertTrue(FP16.less(FP16.MIN_VALUE, FP16.MIN_NORMAL)); in testLess()
287 assertFalse(FP16.less(FP16.MIN_NORMAL, FP16.MIN_VALUE)); in testLess()
288 assertTrue(FP16.less(FP16.toHalf(12.3f), FP16.toHalf(12.4f))); in testLess()
289 assertFalse(FP16.less(FP16.toHalf(12.4f), FP16.toHalf(12.3f))); in testLess()
290 assertFalse(FP16.less(FP16.toHalf(-12.3f), FP16.toHalf(-12.4f))); in testLess()
291 assertTrue(FP16.less(FP16.toHalf(-12.4f), FP16.toHalf(-12.3f))); in testLess()
292 assertTrue(FP16.less(FP16.MIN_VALUE, (short) 0x3ff)); in testLess()
294 assertTrue(FP16.less(FP16.toHalf(-1.0f), FP16.toHalf(0.0f))); in testLess()
295 assertFalse(FP16.less(FP16.toHalf(0.0f), FP16.toHalf(-1.0f))); in testLess()
296 assertFalse(FP16.less(FP16.toHalf(-1.0f), FP16.toHalf(-1.0f))); in testLess()
297 assertFalse(FP16.less(FP16.toHalf(-1.3f), FP16.toHalf(-1.3f))); in testLess()
298 assertFalse(FP16.less(FP16.toHalf(1.0f), FP16.toHalf(0.0f))); in testLess()
299 assertTrue(FP16.less(FP16.toHalf(0.0f), FP16.toHalf(1.0f))); in testLess()
300 assertFalse(FP16.less(FP16.toHalf(1.0f), FP16.toHalf(1.0f))); in testLess()
301 assertFalse(FP16.less(FP16.toHalf(1.3f), FP16.toHalf(1.3f))); in testLess()
302 assertTrue(FP16.less(FP16.toHalf(-0.1f), FP16.toHalf(0.0f))); in testLess()
303 assertFalse(FP16.less(FP16.toHalf(0.0f), FP16.toHalf(-0.1f))); in testLess()
304 assertFalse(FP16.less(FP16.toHalf(-0.1f), FP16.toHalf(-0.1f))); in testLess()
305 assertFalse(FP16.less(FP16.toHalf(0.1f), FP16.toHalf(0.0f))); in testLess()
306 assertTrue(FP16.less(FP16.toHalf(0.0f), FP16.toHalf(0.1f))); in testLess()
307 assertFalse(FP16.less(FP16.toHalf(0.1f), FP16.toHalf(0.1f))); in testLess()