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

/openjdk7/jdk/src/share/classes/java/util/
H A DBitSet.java109 private static int wordIndex(int bitIndex) { method in class:BitSet
164 words = new long[wordIndex(nbits-1) + 1];
335 * Ensures that the BitSet can accommodate a given wordIndex,
339 * @param wordIndex the index to be accommodated.
341 private void expandTo(int wordIndex) { argument
342 int wordsRequired = wordIndex+1;
374 int wordIndex = wordIndex(bitIndex);
375 expandTo(wordIndex);
377 words[wordIndex]
[all...]

Completed in 240 milliseconds