HomeSort by relevance Sort by last modified time
    Searched refs:andNot (Results 1 - 25 of 29) sorted by null

1 2

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerNotTest.java 28 * Methods: and, andNot
32 * andNot for two positive numbers; the first is longer
42 BigInteger result = aNumber.andNot(bNumber);
52 * andNot for two positive numbers; the first is shorter
62 BigInteger result = aNumber.andNot(bNumber);
72 * andNot for two negative numbers; the first is longer
82 BigInteger result = aNumber.andNot(bNumber);
92 * andNot for a negative and a positive numbers; the first is longer
102 BigInteger result = aNumber.andNot(bNumber);
  /libcore/luni/src/test/java/libcore/java/util/
BitSetTest.java 211 result.andNot(small());
214 result.andNot(big());
  /libcore/harmony-tests/src/test/java/tests/api/java/math/
BigIntegerTest.java 815 * @tests java.math.BigInteger#andNot(java.math.BigInteger)
820 BigInteger res = i1.andNot(i2);
823 assertTrue("andNot", (i1.testBit(i) && !i2.testBit(i)) == res
829 res = i1.andNot(i2);
831 assertTrue("andNot reversed",
837 BigInteger.ZERO.andNot(null);
843 assertEquals(BigInteger.ZERO, bi.andNot(BigInteger.ZERO));
  /libcore/luni/src/main/java/java/math/
BigInteger.java 724 * Evaluating {@code x.andNot(value)} returns the same result as {@code
733 public BigInteger andNot(BigInteger value) {
736 return Logical.andNot(this, value);
    [all...]
Logical.java 26 * <li>andNot</li>
217 /** @see BigInteger#andNot(BigInteger) */
218 static BigInteger andNot(BigInteger val, BigInteger that) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
BitSetTest.java     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_util.cpp 225 BitSet::andNot(const BitSet &set)
nv50_ir_ssa.cpp 260 bb->liveSet.andNot(assigned);
nv50_ir_util.h 550 void andNot(const BitSet&);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_util.cpp 225 BitSet::andNot(const BitSet &set)
nv50_ir_ssa.cpp 260 bb->liveSet.andNot(assigned);
nv50_ir_util.h 550 void andNot(const BitSet&);
  /libcore/luni/src/main/java/java/util/
BitSet.java 475 public void andNot(BitSet bs) {
  /libcore/luni/src/test/java/tests/api/java/util/
BitSetTest.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.sat4j.pb_2.2.0.v20100429.jar 
  /cts/suite/pts/deviceTests/browserbench/assets/octane/
crypto.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-crypto.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-crypto.js     [all...]
  /external/chromium_org/v8/benchmarks/
crypto.js     [all...]
  /external/v8/benchmarks/
crypto.js     [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 

Completed in 1720 milliseconds

1 2