Searched refs:startBit (Results 1 – 1 of 1) sorted by relevance
41 static u_char pppcrypt_get_7bits(u_char *input, int startBit) { in pppcrypt_get_7bits() argument44 word = (unsigned)input[startBit / 8] << 8; in pppcrypt_get_7bits()45 word |= (unsigned)input[startBit / 8 + 1]; in pppcrypt_get_7bits()47 word >>= 15 - (startBit % 8 + 7); in pppcrypt_get_7bits()