Home
last modified time | relevance | path

Searched refs:dbl2 (Results 1 – 1 of 1) sorted by relevance

/art/test/041-narrowing/src/
DMain.java21 double dbl2 = Double.NaN; in test_printNarrowing() local
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()
28 (short)dbl2).substring(4)) + " expected: 0000"); 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()