OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FDBigInteger
(Results
1 - 5
of
5
) sorted by null
/libcore/ojluni/src/main/java/sun/misc/
FDBigInteger.java
34
public /*@ spec_bigint_math @*/ class
FDBigInteger
{
118
private static final
FDBigInteger
POW_5_CACHE[];
120
// Initialize
FDBigInteger
cache of powers of 5.
122
POW_5_CACHE = new
FDBigInteger
[MAX_FIVE_POW];
125
FDBigInteger
pow5 = new
FDBigInteger
(new int[]{SMALL_5_POW[i]}, 0);
130
FDBigInteger
prev = POW_5_CACHE[i - 1];
138
// Zero as an
FDBigInteger
.
139
public static final
FDBigInteger
ZERO = new
FDBigInteger
(new int[0], 0)
[
all
...]
FloatingDecimal.java
371
long pow10 =
FDBigInteger
.LONG_5_POW[insignificantDigits] << insignificantDigits; // 10^i == 5^i * 2^i;
448
if ( (nTinyBits <
FDBigInteger
.LONG_5_POW.length) && ((nFractBits + N_5_BITS[nTinyBits]) < 64 ) ){
534
//
FDBigInteger
. The resulting whole number will be
578
// In these cases, we will avoid doing
FDBigInteger
arithmetic.
598
int b = ((int)fractBits *
FDBigInteger
.SMALL_5_POW[B5] ) << B2;
599
int s =
FDBigInteger
.SMALL_5_POW[S5] << S2;
600
int m =
FDBigInteger
.SMALL_5_POW[M5] << M2;
652
long b = (fractBits *
FDBigInteger
.LONG_5_POW[B5] ) << B2;
653
long s =
FDBigInteger
.LONG_5_POW[S5] << S2;
654
long m =
FDBigInteger
.LONG_5_POW[M5] << M2
[
all
...]
/frameworks/base/
preloaded-classes
284
[Lsun.misc.
FDBigInteger
;
[
all
...]
compiled-classes-phone
[
all
...]
/libcore/
openjdk_java_files.mk
[
all
...]
Completed in 228 milliseconds