OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bigTenPows
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/java/math/
Multiplication.java
57
static final BigInteger[]
bigTenPows
= new BigInteger[32];
73
bigTenPows
[i] = BigInteger.valueOf(fivePow << i);
76
for (; i <
bigTenPows
.length; i++) {
78
bigTenPows
[i] =
bigTenPows
[i - 1].multiply(BigInteger.TEN);
122
if (exp <
bigTenPows
.length) {
124
return
bigTenPows
[intExp];
BigDecimal.java
198
TEN_POW = Multiplication.
bigTenPows
;
[
all
...]
Completed in 26 milliseconds