Home | History | Annotate | Download | only in regression

Lines Matching refs:result

24         long result = 123;
26 result = Double.doubleToLongBits(d);
28 if (result != l) {
29 throw new RuntimeException(Long.toString(result));
34 long result = 123;
36 result = Double.doubleToRawLongBits(d);
38 if (result != l) {
39 throw new RuntimeException(Long.toString(result));
44 double result = 123.0;
46 result = Double.longBitsToDouble(l);
48 if (result != d) {
49 throw new RuntimeException(Double.toString(result) + " " + Double.doubleToRawLongBits(result));