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

/libcore/ojluni/src/main/java/java/util/
H A DBitSet.java150 * {@code nbits-1}. All bits are initially {@code false}.
152 * @param nbits the initial size of the bit set
156 public BitSet(int nbits) { argument
157 // nbits can't be negative; size 0 is OK
158 if (nbits < 0)
159 throw new NegativeArraySizeException("nbits < 0: " + nbits);
161 initWords(nbits);
165 private void initWords(int nbits) { argument
166 words = new long[wordIndex(nbits
[all...]

Completed in 4 milliseconds