Searched refs:shiftLeft (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/java/math/BigInteger/
H A DExtremeShiftingTests.java27 * @summary Tests of shiftLeft and shiftRight on Integer.MIN_VALUE
35 ONE.shiftLeft(Integer.MIN_VALUE);
H A DBigIntegerTest.java252 if (!x.shiftLeft(n).equals
274 if (!x.shiftLeft(n).shiftRight(n).equals(x))
277 report("baz shiftLeft", failCount1);
279 report("baz shiftLeft/Right", failCount3);
774 result = BigInteger.ONE.shiftLeft(rnd.nextInt(order));
779 result = BigInteger.ONE.shiftLeft(rnd.nextInt(order));
781 BigInteger temp = BigInteger.ONE.shiftLeft(
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DShiftLeft.java69 BigInteger ls = bL.shiftLeft (bR.intValue ());
H A DExprFactory.java63 ShiftLeft shiftLeft (Expression left, Expression right); method in interface:ExprFactory
H A DDefaultExprFactory.java135 public ShiftLeft shiftLeft (Expression left, Expression right) method in class:DefaultExprFactory
138 } // shiftLeft
/openjdk7/jdk/test/java/util/TimSort/
H A DArrayBuilder.java141 private static BigInteger HUGE = BigInteger.ONE.shiftLeft(100);
/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java1611 BigInteger m2 = ONE.shiftLeft(p); // 2**p
2060 public BigInteger shiftLeft(int n) { method in class:BigInteger
2111 * @see #shiftLeft
2120 return shiftLeft(-n);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java1421 ShiftLeft sl = exprFactory.shiftLeft (e, null);

Completed in 72 milliseconds