Lines Matching refs:crc
27 * crc is the crc of the byte i; other entries are filled in based on the
34 uint32_t crc = 1;
39 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
41 crc32table_le[i + j] = crc ^ crc32table_le[j];
51 uint32_t crc = 0x80000000;
56 crc = (crc << 1) ^ ((crc & 0x80000000) ? CRCPOLY_BE : 0);
58 crc32table_be[i + j] = crc ^ crc32table_be[j];