Lines Matching full:pdata
194 uint8 *pdata = (uint8 *) PKTDATA(osh, p);
200 pdata = (uint8 *) PKTDATA(osh, p);
206 return (uint8*) (pdata+pkt_off);
210 /* given a offset in pdata, find the pkt seg hdr */
1343 uint8 *pdata, /* pointer to array of data to process */
1352 crc = crc8_table[(crc ^ *pdata++) & 0xff];
1416 uint8 *pdata, /* pointer to array of data to process */
1422 CRC_INNER_LOOP(16, crc, *pdata++);
1498 hndcrc32(uint8 *pdata, uint nbytes, uint32 crc)
1501 pend = pdata + nbytes;
1502 while (pdata < pend)
1503 CRC_INNER_LOOP(32, crc, *pdata++);