Lines Matching refs:d
56 long d = 0x44; in shiftTest2() local
62 long result = ((a << 56) | (b << 48) | (c << 40) | (d << 32) | in shiftTest2()
71 double d; in convTest() local
85 d = 1234.5678; in convTest()
86 i = (int) d; in convTest()
87 System.out.println("d=" + d + " --> i=" + i); in convTest()
89 d = -1234.5678; in convTest()
90 i = (int) d; in convTest()
91 System.out.println("d=" + d + " --> i=" + i); in convTest()
94 d = 5678956789.0123; in convTest()
95 l = (long) d; in convTest()
96 System.out.println("d=" + d + " --> l=" + l); in convTest()
98 d = -5678956789.0123; in convTest()
99 l = (long) d; in convTest()
100 System.out.println("d=" + d + " --> l=" + l); in convTest()