Searched refs:fcstab (Results 1 - 3 of 3) sorted by last modified time

/freebsd-11-stable/usr.sbin/ppp/
H A Dhdlc.c65 static u_int16_t const fcstab[256] = { variable
117 fcs = (fcs >> 8) ^ fcstab[(fcs ^ *cp++) & 0xff];
132 fcs = (fcs >> 8) ^ fcstab[(fcs ^ *pos++) & 0xff];
/freebsd-11-stable/sys/netgraph/
H A Dng_async.c172 static const u_int16_t fcstab[]; variable
597 static const u_int16_t fcstab[256] = { variable
/freebsd-11-stable/sys/net/
H A Dppp_defs.h83 #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ fcstab[((fcs) ^ (c)) & 0xff])

Completed in 76 milliseconds