Searched refs:q2 (Results 1 - 12 of 12) 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/lang/
H A DLong.java303 int q2;
306 q2 = i2 / 100;
308 r = i2 - ((q2 << 6) + (q2 << 5) + (q2 << 2));
309 i2 = q2;
317 q2 = (i2 * 52429) >>> (16+3);
318 r = i2 - ((q2 << 3) + (q2 << 1)); // r = i2-(q2*1
[all...]
/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...]
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzRenderer.m192 CGFloat *ctrls, p1, q1, p2, q2, p3, q3;
207 q2 = (y + ctrls[6] * h + ctrls[7] * ah);
210 CGContextAddCurveToPoint(cgRef, p1+offsetX, q1+offsetY, p2+offsetX, q2+offsetY, p3+offsetX, q3+offsetY);
221 q2 = (y + ctrls[6] * h + ctrls[7] * ah);
224 CGContextAddCurveToPoint(cgRef, p1+offsetX, q1+offsetY, p2+offsetX, q2+offsetY, p3+offsetX, q3+offsetY);
235 q2 = (y + ctrls[6] * h + ctrls[7] * ah);
238 CGContextAddCurveToPoint(cgRef, p1+offsetX, q1+offsetY, p2+offsetX, q2+offsetY, p3+offsetX, q3+offsetY);
249 q2 = (y + ctrls[6] * h + ctrls[7] * ah);
252 CGContextAddCurveToPoint(cgRef, p1+offsetX, q1+offsetY, p2+offsetX, q2+offsetY, p3+offsetX, q3+offsetY);
390 CGFloat p1, q1, p2, q2, p
[all...]
/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/langtools/test/tools/javac/AccessMethods/
H A DAccessMethodsLHS.java142 Quem q2 = new Quem();
143 q2.DoIt();
/openjdk7/hotspot/test/compiler/8005956/
H A DPolynomialRoot.java78 final double q2 = 1.0 / 2.0, q4 = 1.0 / 4.0, q8 = 1.0 / 8.0;
140 final double qq = c - q2 * a * (b - q4 * aa);
142 final double rc = q2 * pp , rc3 = rc / 3;
/openjdk7/jdk/src/share/classes/java/math/
H A DBigDecimal.java3213 int q2;
3216 q2 = i2 / 100;
3217 r = i2 - q2 * 100;
3218 i2 = q2;
H A DBigInteger.java2640 BigInteger q2 = q.toBigInteger(tmp.signum * d.signum);
2644 tmp = q2;

Completed in 90 milliseconds