Home
last modified time | relevance | path

Searched refs:MINUS_ONE (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/math/
DLogical.java41 return BigInteger.MINUS_ONE; in not()
43 if (val.equals(BigInteger.MINUS_ONE)) { in not()
86 if (that.equals(BigInteger.MINUS_ONE)){ in and()
89 if (val.equals(BigInteger.MINUS_ONE)) { in and()
225 if (val.equals(BigInteger.MINUS_ONE)) { in andNot()
228 if (that.equals(BigInteger.MINUS_ONE)){ in andNot()
426 if (that.equals(BigInteger.MINUS_ONE) || val.equals(BigInteger.MINUS_ONE)) { in or()
427 return BigInteger.MINUS_ONE; in or()
576 if (that.equals(BigInteger.MINUS_ONE)) { in xor()
579 if (val.equals(BigInteger.MINUS_ONE)) { in xor()
DBitLevel.java141 return ((source.sign < 0) ? BigInteger.MINUS_ONE : BigInteger.ZERO); in shiftRight()
DBigInteger.java75 static final BigInteger MINUS_ONE = new BigInteger(-1, 1); field in BigInteger
369 return MINUS_ONE; in valueOf()