Searched refs:nWords (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/sun/misc/
H A DFDBigInt.java33 int nWords; // number of words used field in class:FDBigInt
38 nWords = 1;
47 nWords = (data[1]==0) ? 1 : 2;
51 data = new int[nWords = other.nWords];
52 System.arraycopy( other.data, 0, data, 0, nWords );
57 nWords = n;
66 nWords = (data[1]==0) ? 1 : 2;
106 if ( nWords+wordcount+1 > t.length ){
108 t = new int[ nWords
[all...]

Completed in 48 milliseconds