/netbsd-src/external/public-domain/xz/dist/src/liblzma/check/ |
H A 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()
|
/netbsd-src/external/gpl3/gcc/dist/libiberty/ |
H A D | crc32.c | 70 static const unsigned int crc32_table[] = variable 175 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255]; in xcrc32()
|
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/ |
H A D | crc32.c | 70 static const unsigned int crc32_table[] = variable 175 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255]; in xcrc32()
|
/netbsd-src/external/gpl3/binutils/dist/libiberty/ |
H A D | crc32.c | 70 static const unsigned int crc32_table[] = variable 175 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255]; in xcrc32()
|
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/ |
H A D | crc32.c | 70 static const unsigned int crc32_table[] = variable 175 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255]; in xcrc32()
|
/netbsd-src/external/gpl3/binutils/dist/gas/config/ |
H A D | obj-evax.c | 349 static unsigned int crc32_table[256] = {0, 0}; variable 360 if (! crc32_table[1]) in crc32() 370 crc32_table[i] = c; in crc32() 379 crc = (crc << 8) ^ crc32_table[(crc >> 24) ^ *buf]; in crc32()
|
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/ |
H A D | obj-evax.c | 349 static unsigned int crc32_table[256] = {0, 0}; variable 360 if (! crc32_table[1]) in crc32() 370 crc32_table[i] = c; in crc32() 379 crc = (crc << 8) ^ crc32_table[(crc >> 24) ^ *buf]; in crc32()
|
/netbsd-src/sys/net80211/ |
H A D | ieee80211_crypto_wep.c | 247 static const uint32_t crc32_table[256] = { variable 348 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_encrypt() 434 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_decrypt()
|
H A D | ieee80211_crypto_tkip.c | 373 static const __u32 crc32_table[256] = { variable 608 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_encrypt() 669 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_decrypt()
|
/netbsd-src/external/public-domain/xz/lib/ |
H A D | Makefile | 39 SRCS+= check.c crc32_table.c crc64_table.c
|
/netbsd-src/external/gpl3/binutils.old/dist/bfd/ |
H A D | opncls.c | 1111 static const unsigned long crc32_table[256] = in bfd_calc_gnu_debuglink_crc32() local 1170 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8); in bfd_calc_gnu_debuglink_crc32()
|
/netbsd-src/external/gpl3/binutils/dist/bfd/ |
H A D | opncls.c | 1120 static const uint32_t crc32_table[256] = in bfd_calc_gnu_debuglink_crc32() local 1179 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8); in bfd_calc_gnu_debuglink_crc32()
|
/netbsd-src/external/public-domain/xz/dist/doc/ |
H A D | xz-file-format.txt | 1041 uint32_t crc32_table[256]; 1067 crc32_table[i] = crc32; 1077 crc = crc32_table[buf[i] ^ (crc & 0xFF)]
|
/netbsd-src/external/gpl3/gcc.old/dist/libbacktrace/ |
H A D | elf.c | 413 static const uint32_t crc32_table[256] = in elf_crc32() local 472 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8); in elf_crc32()
|
/netbsd-src/external/gpl3/gcc/dist/libbacktrace/ |
H A D | elf.c | 460 static const uint32_t crc32_table[256] = in elf_crc32() local 519 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8); in elf_crc32()
|
/netbsd-src/external/gpl3/binutils/dist/binutils/ |
H A D | dwarf.c | 11395 static const unsigned long crc32_table[256] = in calc_gnu_debuglink_crc32() local 11454 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8); in calc_gnu_debuglink_crc32()
|
/netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
H A D | dwarf.c | 11228 static const unsigned long crc32_table[256] = in calc_gnu_debuglink_crc32() local 11287 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8); in calc_gnu_debuglink_crc32()
|
/netbsd-src/external/gpl3/gdb/dist/gdb/ |
H A D | ChangeLog-2013 | 4836 * remote.c (crc32_table, crc32): Remove.
|
H A D | ChangeLog-2009 | 3677 * utils.c (gnu_debuglink_crc32): Store crc32_table as unsigned int
|
/netbsd-src/external/gpl3/gdb.old/dist/gdb/ |
H A D | ChangeLog-2009 | 3677 * utils.c (gnu_debuglink_crc32): Store crc32_table as unsigned int
|
H A D | ChangeLog-2013 | 4836 * remote.c (crc32_table, crc32): Remove.
|
/netbsd-src/external/gpl3/gdb/dist/gdbserver/ |
H A D | ChangeLog-2002-2021 | 9678 * server.c (crc32_table): Delete.
|