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

/freebsd-12-stable/lib/libproc/
H A Dcrc32.h14 extern uint32_t crc32_tab[];
24 crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);
H A Dcrc32.c13 uint32_t crc32_tab[] = { variable
H A Dproc_sym.c80 *crc = crc32_tab[(*crc ^ *p++) & 0xff] ^ (*crc >> 8);
/freebsd-12-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-12-stable/stand/libsa/
H A Dcrc32.c52 static const uint32_t crc32_tab[] = { variable
106 crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);
/freebsd-12-stable/sys/sys/
H A Dlibkern.h194 extern const uint32_t crc32_tab[];
202 crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);
/freebsd-12-stable/usr.bin/mkimg/
H A Dgpt.c70 static const uint32_t crc32_tab[] = { variable
123 crc = crc32_tab[(crc ^ *p++) & 0xff] ^ (crc >> 8);
/freebsd-12-stable/sys/libkern/
H A Dcrc32.c64 const uint32_t crc32_tab[] = { variable
124 * crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);

Completed in 133 milliseconds