Searched refs:howManyBits (Results 1 – 1 of 1) sorted by relevance
85 public void appendLowBits(int howManyBits, byte data) { in appendLowBits() argument86 Preconditions.checkArgument(howManyBits < BITS_IN_BYTE); in appendLowBits()87 int lowMask = (1 << howManyBits) - 1; in appendLowBits()