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

/libcore/ojluni/src/main/java/java/util/
H A DBitSet.java111 private static int wordIndex(int bitIndex) { method in class:BitSet
166 words = new long[wordIndex(nbits-1) + 1];
343 * Ensures that the BitSet can accommodate a given wordIndex,
347 * @param wordIndex the index to be accommodated.
349 private void expandTo(int wordIndex) { argument
350 int wordsRequired = wordIndex+1;
382 int wordIndex = wordIndex(bitIndex);
383 expandTo(wordIndex);
385 words[wordIndex]
[all...]

Completed in 87 milliseconds