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

/haiku-fatelf/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_crypto_wep.c252 static const uint32_t crc32_table[256] = { variable
351 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
438 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
H A Dieee80211_crypto_tkip.c381 static const __u32 crc32_table[256] = { variable
616 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
677 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8);
/haiku-fatelf/src/bin/gdb/gdb/
H A Dm32r-stub.c546 static unsigned long crc32_table[256] = { 0, 0 }; variable
551 if (!crc32_table[1])
561 crc32_table[i] = c;
567 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
H A Dutils.c3046 static const unsigned long crc32_table[256] = {
3104 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
3033 static const unsigned long crc32_table[256] = { local
H A Dremote.c4758 static unsigned long crc32_table[256] =
4764 if (!crc32_table[1])
4774 crc32_table[i] = c;
4780 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
4745 static unsigned long crc32_table[256] = variable
/haiku-fatelf/src/bin/gdb/bfd/
H A Dopncls.c900 static const unsigned long crc32_table[256] =
959 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
899 static const unsigned long crc32_table[256] = local

Completed in 105 milliseconds