HomeSort by relevance Sort by last modified time
    Searched refs:nWords (Results 1 - 6 of 6) 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...]
FDBigInteger.java 154 private int nWords; // data[nWords-1]!=0, all values above are zero
155 // if nWords==0 -> this FDBigInteger is zero
160 @ public invariant 0 <= nWords && nWords <= data.length && offset >= 0;
161 @ public invariant nWords == 0 ==> offset == 0;
162 @ public invariant nWords > 0 ==> data[nWords - 1] != 0;
163 @ public invariant (\forall int i; nWords <= i && i < data.length; data[i] == 0);
165 @ return AP(data, nWords) << (offset*32)
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
ttProgram.py 319 nWords = 0
321 while nWords < nArgs and nWords < 255 and not (0 <= args[nWords] <= 255):
322 nWords += 1
324 while nWords+nBytes < nArgs and nBytes < 255 and 0 <= args[nWords+nBytes] <= 255:
326 if nBytes < 2 and nWords + nBytes < 255 and nWords + nBytes != nArgs:
328 nWords += nByte
    [all...]
  /external/valgrind/helgrind/
hg_wordset.h 92 void HG_(getPayloadWS) ( /*OUT*/UWord** words, /*OUT*/UWord* nWords,
hg_wordset.c 447 void HG_(getPayloadWS) ( /*OUT*/UWord** words, /*OUT*/UWord* nWords,
455 *nWords = wv->size;
  /external/pdfium/fpdfsdk/javascript/
Document.cpp     [all...]

Completed in 142 milliseconds