Home
last modified time | relevance | path

Searched refs:crc32_table (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/xz/src/liblzma/check/
H A Dcrc32_tablegen.c20 static uint32_t crc32_table[8][256]; variable
30 uint32_t r = s == 0 ? b : crc32_table[s - 1][b]; in init_crc32_table()
39 crc32_table[s][b] = r; in init_crc32_table()
46 crc32_table[s][b] = byteswap32(crc32_table[s][b]); in init_crc32_table()
67 printf("0x%08" PRIX32, crc32_table[s][b]); in print_crc32_table()
96 printf("0x%08" PRIX32, crc32_table[0][b]); in print_lz_table()
/freebsd/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); in crc32()
/freebsd/sys/net80211/
H A Dieee80211_crypto_wep.c289 static const uint32_t crc32_table[256] = { variable
388 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_encrypt()
475 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_decrypt()
H A Dieee80211_crypto_tkip.c461 static const __u32 crc32_table[256] = { variable
696 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_encrypt()
757 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_decrypt()
/freebsd/lib/liblzma/
H A DMakefile85 crc32_table.c \
/freebsd/contrib/xz/
H A DChangeLog2070 src/liblzma/check/crc32_table.c | 10 ++++------
2087 src/liblzma/check/crc32_table.c | 2 +-
4406 src/liblzma/check/crc32_table.c | 2 ++
4717 src/liblzma/check/crc32_table.c | 3 -
5166 src/liblzma/check/crc32_table.c | 4 ++--
5214 src/liblzma/check/crc32_table.c | 18 +++++++++++++++---
7228 src/liblzma/check/crc32_table.c | 19 +++-