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

/freebsd-10.0-release/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-10.0-release/sys/boot/common/
H A Dcrc32.c52 static const uint32_t crc32_tab[] = { variable
106 crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);
/freebsd-10.0-release/sys/sys/
H A Dlibkern.h133 extern const uint32_t crc32_tab[];
141 crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);
/freebsd-10.0-release/sys/libkern/
H A Dcrc32.c51 const uint32_t crc32_tab[] = { variable
111 * crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);

Completed in 199 milliseconds