Searched refs:PPP_FCS (Results 1 – 6 of 6) sorted by relevance
| /components/net/lwip/lwip-1.4.1/src/netif/ppp/ |
| A D | ppp.c | 898 fcsOut = PPP_FCS(fcsOut, PPP_ALLSTATIONS); in pppifOutput() 900 fcsOut = PPP_FCS(fcsOut, PPP_UI); in pppifOutput() 905 fcsOut = PPP_FCS(fcsOut, c); in pppifOutput() 909 fcsOut = PPP_FCS(fcsOut, c); in pppifOutput() 923 fcsOut = PPP_FCS(fcsOut, c); in pppifOutput() 1112 fcsOut = PPP_FCS(fcsOut, c); in pppWrite() 1970 pcrx->inFCS = PPP_FCS(pcrx->inFCS, curChar); in pppInProc()
|
| A D | ppp_impl.h | 155 #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ fcstab[((fcs) ^ (c)) & 0xff]) macro
|
| /components/net/lwip/lwip-2.1.2/src/netif/ppp/ |
| A D | pppos.c | 134 #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ fcstab[((fcs) ^ (c)) & 0xff]) macro 149 #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ ppp_get_fcs(((fcs) ^ (c)) & 0xff)) macro 708 pppos->in_fcs = PPP_FCS(pppos->in_fcs, cur_char); in pppos_input() 842 *fcs = PPP_FCS(*fcs, c); in pppos_output_append()
|
| A D | demand.c | 269 fcs = PPP_FCS(fcs, c);
|
| /components/net/lwip/lwip-2.0.3/src/netif/ppp/ |
| A D | pppos.c | 134 #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ fcstab[((fcs) ^ (c)) & 0xff]) macro 149 #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ ppp_get_fcs(((fcs) ^ (c)) & 0xff)) macro 688 pppos->in_fcs = PPP_FCS(pppos->in_fcs, cur_char); in pppos_input() 822 *fcs = PPP_FCS(*fcs, c); in pppos_output_append()
|
| A D | demand.c | 269 fcs = PPP_FCS(fcs, c);
|
Completed in 22 milliseconds