Searched refs:crc32_table (Results 1 - 9 of 9) sorted by last modified time

/freebsd-11-stable/lib/liblzma/
H A DMakefile80 crc32_table.c \
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzvol.c2003 CRC32(crc, &gpe, sizeof (gpe), -1U, crc32_table);
2005 CRC32(crc, &gpt, sizeof (gpt), -1U, crc32_table);
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dcrc32.c19 static const u32 crc32_table[256] = { variable
82 crc = crc32_table[(crc ^ frame[i]) & 0xff] ^ (crc >> 8);
/freebsd-11-stable/sys/net80211/
H A Dieee80211_crypto_wep.c266 static const uint32_t crc32_table[256] = { variable
365 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
452 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
H A Dieee80211_crypto_tkip.c391 static const __u32 crc32_table[256] = { variable
626 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
687 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
/freebsd-11-stable/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-11-stable/contrib/gdb/gdb/
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
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
/freebsd-11-stable/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

Completed in 139 milliseconds