Searched refs:bufferBitOffset (Results 1 – 1 of 1) sorted by relevance
864 private int getBitAtBitOffsetInByteArray(byte[] buffer, int bufferBitOffset) { in getBitAtBitOffsetInByteArray() argument865 int bufferIndex = bufferBitOffset / Byte.SIZE; // The byte index that contains the bit in getBitAtBitOffsetInByteArray()866 int bitOffsetInByte = bufferBitOffset % Byte.SIZE; // The bit offset within that byte in getBitAtBitOffsetInByteArray()