HomeSort by: relevance | last modified time | path
    Searched defs:crc32_table (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/net80211/
ieee80211_crypto_wep.c 247 static const uint32_t crc32_table[256] = { variable in typeref:typename:const uint32_t[256]
348 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
434 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
ieee80211_crypto_tkip.c 373 static const __u32 crc32_table[256] = { variable in typeref:typename:const __u32[256]
608 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
669 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);

Completed in 12 milliseconds