OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:approxsize
(Results
1 - 2
of
2
) sorted by null
/external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
BigIntegerMath.java
142
int
approxSize
= IntMath.divide(n * IntMath.log2(n, CEILING), Long.SIZE, CEILING);
143
ArrayList<BigInteger> bignums = new ArrayList<BigInteger>(
approxSize
);
/external/guava/guava/src/com/google/common/math/
BigIntegerMath.java
325
int
approxSize
= IntMath.divide(n * IntMath.log2(n, CEILING), Long.SIZE, CEILING);
326
ArrayList<BigInteger> bignums = new ArrayList<BigInteger>(
approxSize
);
Completed in 646 milliseconds