Home
last modified time | relevance | path

Searched refs:startBit (Results 1 – 1 of 1) sorted by relevance

/reactos/drivers/network/tcpip/lwip/src/netif/ppp/
H A Dpppcrypt.c41 static u_char pppcrypt_get_7bits(u_char *input, int startBit) { in pppcrypt_get_7bits() argument
44 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()