Searched refs:DIVISOR (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/test/compiler/6805724/
H A DTest6805724.java35 // Initialize DIVISOR so that it is final in this class.
36 static final long DIVISOR; // 2^k-1 constant field in class:Test6805724
45 DIVISOR = value;
49 return x % DIVISOR;
53 return x % DIVISOR;
/openjdk7/hotspot/test/compiler/6800154/
H A DTest6800154.java66 // Initialize DIVISOR so that it is final in this class.
67 static final long DIVISOR; field in class:Test6800154
75 DIVISOR = value;
103 throw new InternalError(dividend + " / " + DIVISOR + " failed: " + result + " != " + expected);
107 static long divint(long a) { return a / DIVISOR; }
108 static long divcomp(long a) { return a / DIVISOR; }
/openjdk7/hotspot/test/compiler/6603011/
H A DTest.java53 // Initailize DIVISOR so that it is final in this class.
54 static final int DIVISOR; field in class:Test
61 DIVISOR = value;
66 public int divbyI (int dividend) { return dividend / DIVISOR; }
67 public int modbyI (int dividend) { return dividend % DIVISOR; }
68 public long divbyL (long dividend) { return dividend / DIVISOR; }
69 public long modbyL (long dividend) { return dividend % DIVISOR; }
71 public int divisor() { return DIVISOR; }
189 // This allows the JIT to see q.DIVISOR as a final constant, and change

Completed in 48 milliseconds