OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SMALL_5_POW
(Results
1 - 2
of
2
) sorted by null
/libcore/ojluni/src/main/java/sun/misc/
FDBigInteger.java
67
static final int[]
SMALL_5_POW
= {
124
while (i <
SMALL_5_POW
.length) {
125
FDBigInteger pow5 = new FDBigInteger(new int[]{
SMALL_5_POW
[i]}, 0);
254
} else if (p5 <
SMALL_5_POW
.length) {
255
int pow5 =
SMALL_5_POW
[p5];
296
if (p5 <
SMALL_5_POW
.length) {
297
long pow5 =
SMALL_5_POW
[p5] & LONG_MASK;
716
if (p5 <
SMALL_5_POW
.length) {
718
mult(this.data, this.nWords,
SMALL_5_POW
[p5], r);
[
all
...]
FloatingDecimal.java
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;
[
all
...]
Completed in 48 milliseconds