Searched defs:q2 (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/
H A DAndQueryExp.java59 * Creates a new AndQueryExp with q1 and q2 QueryExp.
61 public AndQueryExp(QueryExp q1, QueryExp q2) { argument
63 exp2 = q2;
H A DOrQueryExp.java62 public OrQueryExp(QueryExp q1, QueryExp q2) { argument
64 exp2 = q2;
H A DQuery.java127 * @param q2 Another query expression.
134 public static QueryExp and(QueryExp q1, QueryExp q2) { argument
135 return new AndQueryExp(q1, q2);
143 * @param q2 Another query expression.
150 public static QueryExp or(QueryExp q1, QueryExp q2) { argument
151 return new OrQueryExp(q1, q2);
/openjdk7/jdk/test/java/lang/ref/
H A DBasic.java37 static ReferenceQueue q2 = new ReferenceQueue(); field in class:Basic
77 keep.addElement(new PhantomReference(new Object(), q2));
110 while ((r = q2.poll()) != null) {
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DExchanger.java308 long q0, q1, q2, q3, q4, q5, q6, q7, q8, q9, qa, qb, qc, qd, qe; field in class:Exchanger.Slot
/openjdk7/hotspot/src/share/vm/opto/
H A Ddivnode.cpp51 uint32_t ad, anc, delta, q1, r1, q2, r2, t; local
61 q2 = two31/ad; // Init. q2 = 2**p/|d|.
62 r2 = two31 - q2*ad; // Init. r2 = rem(2**p, |d|).
71 q2 = 2*q2; // Update q2 = 2**p/|d|.
74 q2 = q2 + 1; // comparison here).
80 M = q2
219 uint64_t ad, anc, delta, q1, r1, q2, r2, t; local
[all...]

Completed in 29 milliseconds