Searched refs:startBit (Results 1 – 1 of 1) sorted by relevance
139 int startBit227 Get7Bits( u_char *input, int startBit) in Get7Bits() argument231 word = (unsigned)input[startBit / 8] << 8; in Get7Bits()232 word |= (unsigned)input[startBit / 8 + 1]; in Get7Bits()234 word >>= 15 - (startBit % 8 + 7); in Get7Bits()