Searched refs:crc32_table (Results 1 - 8 of 8) sorted by relevance

/freebsd-10.0-release/contrib/xz/src/liblzma/check/
H A Dcrc32_tablegen.c21 static uint32_t crc32_table[8][256]; variable
31 uint32_t r = s == 0 ? b : crc32_table[s - 1][b];
40 crc32_table[s][b] = r;
47 crc32_table[s][b] = bswap32(crc32_table[s][b]);
66 printf("0x%08" PRIX32, crc32_table[s][b]);
93 printf("0x%08" PRIX32, crc32_table[0][b]);
/freebsd-10.0-release/lib/liblzma/
H A DMakefile75 crc32_table.c \
/freebsd-10.0-release/sys/net80211/
H A Dieee80211_crypto_wep.c252 static const uint32_t crc32_table[256] = { variable
351 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
438 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
H A Dieee80211_crypto_tkip.c381 static const __u32 crc32_table[256] = { variable
616 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
677 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dopncls.c1045 static const unsigned long crc32_table[256] =
1104 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
1044 static const unsigned long crc32_table[256] = local
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dutils.c2996 static const unsigned long crc32_table[256] = {
3054 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
2983 static const unsigned long crc32_table[256] = { local
H A Dremote.c4782 static unsigned long crc32_table[256] =
4788 if (!crc32_table[1])
4798 crc32_table[i] = c;
4804 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
4769 static unsigned long crc32_table[256] = variable
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzvol.c1559 CRC32(crc, &gpe, sizeof (gpe), -1U, crc32_table);
1561 CRC32(crc, &gpt, sizeof (gpt), -1U, crc32_table);

Completed in 120 milliseconds