Searched refs:crc32_tab (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/sbin/hastd/
H A Dcrc32.h14 extern uint32_t crc32_tab[];
24 crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);
H A Dcrc32.c52 uint32_t crc32_tab[] = { variable
112 * crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);
/freebsd-11-stable/stand/libsa/
H A Dcrc32.c52 static const uint32_t crc32_tab[] = { variable
106 crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);
/freebsd-11-stable/sys/sys/
H A Dlibkern.h164 extern const uint32_t crc32_tab[];
172 crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);
/freebsd-11-stable/usr.bin/mkimg/
H A Dgpt.c76 static const uint32_t crc32_tab[] = { variable
129 crc = crc32_tab[(crc ^ *p++) & 0xff] ^ (crc >> 8);
/freebsd-11-stable/sys/libkern/
H A Dcrc32.c61 const uint32_t crc32_tab[] = { variable
121 * crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);

Completed in 173 milliseconds