OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fcstab
(Results
1 - 3
of
3
) sorted by null
/external/ppp/pppd/include/net/
ppp_defs.h
109
#define PPP_FCS(fcs, c) (((fcs) >> 8) ^
fcstab
[((fcs) ^ (c)) & 0xff])
/external/libppp/src/
hdlc.c
63
static u_int16_t const
fcstab
[256] = {
variable
115
fcs = (fcs >> 8) ^
fcstab
[(fcs ^ *cp++) & 0xff];
130
fcs = (fcs >> 8) ^
fcstab
[(fcs ^ *pos++) & 0xff];
/external/ppp/pppd/
demand.c
176
static u_short
fcstab
[256] = {
variable
Completed in 233 milliseconds