Searched defs:wlen (Results 1 - 1 of 1) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DOpenBitSet.java80 protected int wlen; // number of words (elements) used in the array field in class:OpenBitSet
92 wlen = bits.length;
114 this.wlen = numWords;
115 this.numBits = wlen * 64;
120 return new OpenBitSetIterator(bits, wlen);
154 public int getNumWords() { return wlen; }
157 public void setNumWords(int nWords) { this.wlen=nWords; }
305 if (wordNum>=wlen) {
307 wlen = wordNum+1;
346 if (wordNum>=wlen) retur
[all...]

Completed in 893 milliseconds