OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bigFivePows
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/java/math/
Multiplication.java
63
static final BigInteger
bigFivePows
[] = new BigInteger[32];
72
bigFivePows
[i] = BigInteger.valueOf(fivePow);
77
bigFivePows
[i] =
bigFivePows
[i - 1].multiply(
bigFivePows
[1]);
130
return
bigFivePows
[1].pow(intExp).shiftLeft(intExp);
144
return
bigFivePows
[1].pow(intExp).shiftLeft(intExp);
153
BigInteger powerOfFive =
bigFivePows
[1].pow(Integer.MAX_VALUE);
162
res = res.multiply(
bigFivePows
[1].pow(intExp));
185
} else if (exp <
bigFivePows
.length)
[
all
...]
BigDecimal.java
199
FIVE_POW = Multiplication.
bigFivePows
;
[
all
...]
Completed in 109 milliseconds