Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/xz/src/liblzma/check/
Dcrc32_tablegen.c21 static uint32_t crc32_table[8][256]; variable
31 uint32_t r = s == 0 ? b : crc32_table[s - 1][b]; in init_crc32_table()
40 crc32_table[s][b] = r; in init_crc32_table()
47 crc32_table[s][b] = bswap32(crc32_table[s][b]); in init_crc32_table()
66 printf("0x%08" PRIX32, crc32_table[s][b]); in print_crc32_table()
93 printf("0x%08" PRIX32, crc32_table[0][b]); in print_lz_table()
/freebsd-12-stable/contrib/wpa/src/utils/
Dcrc32.c19 static const u32 crc32_table[256] = { variable
82 crc = crc32_table[(crc ^ frame[i]) & 0xff] ^ (crc >> 8); in crc32()
/freebsd-12-stable/sys/net80211/
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()
Dieee80211_crypto_tkip.c464 static const __u32 crc32_table[256] = { variable
699 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_encrypt()
760 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_decrypt()
/freebsd-12-stable/lib/liblzma/
DMakefile80 crc32_table.c \
/freebsd-12-stable/contrib/binutils/bfd/
Dopncls.c1044 static const unsigned long crc32_table[256] = in bfd_calc_gnu_debuglink_crc32() local
1103 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8); in bfd_calc_gnu_debuglink_crc32()
/freebsd-12-stable/contrib/gdb/gdb/
Dutils.c2983 static const unsigned long crc32_table[256] = { in gnu_debuglink_crc32() local
3041 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8); in gnu_debuglink_crc32()
Dremote.c4769 static unsigned long crc32_table[256] = variable
4775 if (!crc32_table[1]) in crc32()
4785 crc32_table[i] = c; in crc32()
4791 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255]; in crc32()
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
Dzvol.c2017 CRC32(crc, &gpe, sizeof (gpe), -1U, crc32_table);
2019 CRC32(crc, &gpt, sizeof (gpt), -1U, crc32_table);
/freebsd-12-stable/contrib/gdb/gdb/doc/
Dgdb.info-21252 static const unsigned long crc32_table[256] =
1311 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
Dgdb.texinfo10317 static const unsigned long crc32_table[256] =
10376 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
/freebsd-12-stable/contrib/xz/
DChangeLog3150 src/liblzma/check/crc32_table.c | 3 +++