Lines Matching defs:crc
46 * CRC LOOKUP TABLE
48 * The following CRC lookup table was generated automagically
49 * by the Rocksoft^tm Model CRC Algorithm Table Generation
56 * For more information on the Rocksoft^tm Model CRC Algorithm,
57 * see the document titled "A Painless Guide to CRC Error
147 uint32_t crc = 0xffffffff;
150 crc = ((crc >> 8) & 0x00ffffff) ^ crc_table[(crc ^ *bp++) & 0xff];
152 return htonl(bswap32(crc ^ 0xffffffff));
172 uint32_t crc = 0xffffffff;
175 crc = ((crc >> 8) & 0x00ffffff) ^ crc_table[(crc ^ *bp++) & 0xff];
179 crc = ((crc >> 8) & 0x00ffffff) ^ crc_table[(crc ^ *bp++) & 0xff];
181 return htonl(bswap32(crc ^ 0xffffffff));