HomeSort by relevance Sort by last modified time
    Searched defs:nWords (Results 1 - 2 of 2) sorted by null

  /libcore/ojluni/src/main/java/sun/misc/
FDBigInt.java 33 int nWords; // number of words used
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+wordcount+1 ]
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
Document.cpp     [all...]

Completed in 647 milliseconds