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