Searched refs:crc32_table (Results 1 – 12 of 12) sorted by relevance
| /freebsd-12-stable/contrib/xz/src/liblzma/check/ |
| D | crc32_tablegen.c | 21 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/ |
| D | crc32.c | 19 static const u32 crc32_table[256] = { variable 82 crc = crc32_table[(crc ^ frame[i]) & 0xff] ^ (crc >> 8); in crc32()
|
| /freebsd-12-stable/sys/net80211/ |
| D | ieee80211_crypto_wep.c | 289 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()
|
| D | ieee80211_crypto_tkip.c | 464 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/ |
| D | Makefile | 80 crc32_table.c \
|
| /freebsd-12-stable/contrib/binutils/bfd/ |
| D | opncls.c | 1044 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/ |
| D | utils.c | 2983 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()
|
| D | remote.c | 4769 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/ |
| D | zvol.c | 2017 CRC32(crc, &gpe, sizeof (gpe), -1U, crc32_table); 2019 CRC32(crc, &gpt, sizeof (gpt), -1U, crc32_table);
|
| /freebsd-12-stable/contrib/gdb/gdb/doc/ |
| D | gdb.info-2 | 1252 static const unsigned long crc32_table[256] = 1311 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
|
| D | gdb.texinfo | 10317 static const unsigned long crc32_table[256] = 10376 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
|
| /freebsd-12-stable/contrib/xz/ |
| D | ChangeLog | 3150 src/liblzma/check/crc32_table.c | 3 +++
|