Lines Matching refs:Long

10                 + Long.toHexString(Double.doubleToRawLongBits(Double.POSITIVE_INFINITY)));  in test_printNarrowing()
12 + Long.toHexString(Double.doubleToRawLongBits(Double.NEGATIVE_INFINITY))); in test_printNarrowing()
14 + Long.toHexString(Double.doubleToRawLongBits(Float.POSITIVE_INFINITY))); in test_printNarrowing()
16 + Long.toHexString(Double.doubleToRawLongBits(Float.NEGATIVE_INFINITY))); in test_printNarrowing()
18 + Long.toHexString(Double.doubleToRawLongBits(Double.NaN))); in test_printNarrowing()
20 + Long.toHexString(Double.doubleToRawLongBits(Float.NaN))); in test_printNarrowing()
24 + (Long.toHexString((byte)dbl2).equals("0") ? "00" : Long.toHexString((byte)dbl2) in test_printNarrowing()
33 + (Long.toHexString((long)dbl2).equals("0") ? "0000000000000000" : Long in test_printNarrowing()
38 + (Long.toHexString((byte)fl2).equals("0") ? "00" : Long.toHexString((byte)fl2) in test_printNarrowing()
47 + (Long.toHexString((long)fl2).equals("0") ? "0000000000000000" : Long in test_printNarrowing()
59 System.out.println("(long) Double.POSITIVE_INFINITY = " + Long.toHexString((long)dbl3) in test_printNarrowing()
64 + (Long.toHexString((byte)dbl4).equals("0") ? " 00" : Long in test_printNarrowing()
67 + (Integer.toHexString((short)dbl4).equals("0") ? " 0000" : Long in test_printNarrowing()
71 System.out.println("(long) Double.NEGATIVE_INFINITY = " + Long.toHexString((long)dbl4) in test_printNarrowing()
83 System.out.println("(long) Float.POSITIVE_INFINITY = " + Long.toHexString((long)fl3) in test_printNarrowing()
88 + (Long.toHexString((byte)fl4).equals("0") ? " 00" : Long in test_printNarrowing()
91 + (Integer.toHexString((short)fl4).equals("0") ? " 0000" : Long in test_printNarrowing()
95 System.out.println("(long) Float.NEGATIVE_INFINITY = " + Long.toHexString((long)fl4) in test_printNarrowing()