Home
last modified time | relevance | path

Searched refs:repLength (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/util/
DBitArray.java96 int repLength = ((length + BITS_PER_UNIT - 1)/BITS_PER_UNIT); in BitArray() local
97 int unusedBits = repLength*BITS_PER_UNIT - length; in BitArray()
105 repn = new byte[repLength]; in BitArray()
106 System.arraycopy(a, ofs, repn, 0, repLength); in BitArray()
107 if (repLength > 0) { in BitArray()
108 repn[repLength - 1] &= bitMask; in BitArray()