HomeSort by relevance Sort by last modified time
    Searched full:d2long (Results 1 - 1 of 1) sorted by null

  /art/test/577-checker-fp2int/src/
Main.java 33 /// CHECK-START: long Main.d2long(double) instruction_simplifier (before)
37 /// CHECK-START: long Main.d2long(double) instruction_simplifier (after)
43 private static long d2long(double d) { method in class:Main
77 expectEquals64(0xfff0000000000000L, d2long(Double.NEGATIVE_INFINITY));
78 expectEquals64(0xbff0000000000000L, d2long(-1.0d));
79 expectEquals64(0x8000000000000000L, d2long(-0.0d));
80 expectEquals64(0x0000000000000000L, d2long(+0.0d));
81 expectEquals64(0x3ff0000000000000L, d2long(+1.0d));
82 expectEquals64(0x7ff0000000000000L, d2long(Double.POSITIVE_INFINITY));
86 expectEquals64(l, d2long(Double.longBitsToDouble(l)))
    [all...]

Completed in 74 milliseconds