Searched refs:activeLength (Results 1 – 1 of 1) sorted by relevance
1029 private void deriveBitString(byte[] bitString, int activeLength) { in deriveBitString() argument1030 int length = activeLength / 8; in deriveBitString()1031 if (activeLength % 8 != 0) { in deriveBitString()1035 byte mask = (byte)((byte)0x80 >>> ((activeLength + 6) % 8)); in deriveBitString()1036 if (activeLength % 8 == 1) { in deriveBitString()