Lines Matching refs:toHexString
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()
27 + (Integer.toHexString((short)dbl2).equals("0") ? "0000" : Integer.toHexString( in test_printNarrowing()
30 + (Integer.toHexString((int)dbl2).equals("0") ? "00000000" : Integer in test_printNarrowing()
31 .toHexString((int)dbl2)) + " expected: 00000000"); in test_printNarrowing()
33 + (Long.toHexString((long)dbl2).equals("0") ? "0000000000000000" : Long in test_printNarrowing()
34 .toHexString((long)dbl2)) + " expected: 0000000000000000"); in test_printNarrowing()
38 + (Long.toHexString((byte)fl2).equals("0") ? "00" : Long.toHexString((byte)fl2) in test_printNarrowing()
41 + (Integer.toHexString((short)fl2).equals("0") ? "0000" : Integer.toHexString( in test_printNarrowing()
44 + (Integer.toHexString((int)fl2).equals("0") ? "00000000" : Integer in test_printNarrowing()
45 .toHexString((int)fl2)) + " expected: 00000000"); in test_printNarrowing()
47 + (Long.toHexString((long)fl2).equals("0") ? "0000000000000000" : Long in test_printNarrowing()
48 .toHexString((long)fl2)) + " expected: 0000000000000000"); in test_printNarrowing()
52 + (Integer.toHexString((byte)dbl3).equals("0") ? "00" : Integer.toHexString( in test_printNarrowing()
55 + (Integer.toHexString((short)dbl3).equals("0") ? "0000" : Integer.toHexString( in test_printNarrowing()
58 + Integer.toHexString((int)dbl3) + " expected: 7fffffff"); 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()
65 .toHexString((byte)dbl4)) + " expected: 00"); in test_printNarrowing()
67 + (Integer.toHexString((short)dbl4).equals("0") ? " 0000" : Long in test_printNarrowing()
68 .toHexString((short)dbl4)) + " expected: 0000"); in test_printNarrowing()
70 + Integer.toHexString((int)dbl4) + " expected: 80000000"); in test_printNarrowing()
71 System.out.println("(long) Double.NEGATIVE_INFINITY = " + Long.toHexString((long)dbl4) in test_printNarrowing()
76 + (Integer.toHexString((byte)fl3).equals("0") ? "00" : Integer.toHexString( in test_printNarrowing()
79 + (Integer.toHexString((short)fl3).equals("0") ? "0000" : Integer.toHexString( in test_printNarrowing()
82 + Integer.toHexString((int)fl3) + " expected: 7fffffff"); 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()
89 .toHexString((byte)fl4)) + " expected: 00"); in test_printNarrowing()
91 + (Integer.toHexString((short)fl4).equals("0") ? " 0000" : Long in test_printNarrowing()
92 .toHexString((short)fl4)) + " expected: 0000"); in test_printNarrowing()
94 + Integer.toHexString((int)fl4) + " expected: 80000000"); in test_printNarrowing()
95 System.out.println("(long) Float.NEGATIVE_INFINITY = " + Long.toHexString((long)fl4) in test_printNarrowing()