Searched defs:xor (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/math/
H A DLogical.java28 * <li>xor</li>
568 /** @see BigInteger#xor(BigInteger) */
569 static BigInteger xor(BigInteger val, BigInteger that) { method in class:Logical
H A DBigInteger.java679 * @param value value to be xor'ed with {@code this}
682 public BigInteger xor(BigInteger value) { method in class:BigInteger
685 return Logical.xor(this, value);
/libcore/luni/src/main/java/java/util/
H A DBitSet.java61 * not safe after an xor operation that may have cleared the highest set bit or
502 public void xor(BitSet bs) { method in class:BitSet

Completed in 180 milliseconds