Home
last modified time | relevance | path

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

/src/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()
/src/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 ieee80211_crc32()
/src/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.c462 static const __u32 crc32_table[256] = { variable
697 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_encrypt()
758 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_decrypt()
/src/contrib/xz/
H A DChangeLog5326 because crc32_table.c included the lzma_crc32_table[][] in the build
5334 src/liblzma/check/crc32_table.c | 42 ---------------------------------------
6122 src/liblzma/check/crc32_table.c | 10 +++++-----
8436 src/liblzma/check/crc32_table.c | 10 ++++------
8452 src/liblzma/check/crc32_table.c | 2 +-
10719 src/liblzma/check/crc32_table.c | 2 ++
11030 src/liblzma/check/crc32_table.c | 3 -
11479 src/liblzma/check/crc32_table.c | 4 ++--
11527 src/liblzma/check/crc32_table.c | 18 +++++++++++++++---
13541 src/liblzma/check/crc32_table.c | 19 +++-