Home
last modified time | relevance | path

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

/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 ieee80211_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 DMakefile84 crc32_table.c \