Lines Matching refs:pdata
194 uint8 *pdata = (uint8 *) PKTDATA(osh, p); in pktdataoffset() local
200 pdata = (uint8 *) PKTDATA(osh, p); in pktdataoffset()
206 return (uint8*) (pdata+pkt_off); in pktdataoffset()
1343 uint8 *pdata, /* pointer to array of data to process */ in hndcrc8() argument
1352 crc = crc8_table[(crc ^ *pdata++) & 0xff]; in hndcrc8()
1416 uint8 *pdata, /* pointer to array of data to process */ in hndcrc16() argument
1422 CRC_INNER_LOOP(16, crc, *pdata++); in hndcrc16()
1498 hndcrc32(uint8 *pdata, uint nbytes, uint32 crc) in hndcrc32() argument
1501 pend = pdata + nbytes; in hndcrc32()
1502 while (pdata < pend) in hndcrc32()
1503 CRC_INNER_LOOP(32, crc, *pdata++); in hndcrc32()