Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/xz/dist/src/liblzma/check/
H A 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()
/netbsd-src/external/gpl3/gcc/dist/libiberty/
H A Dcrc32.c70 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 Dcrc32.c70 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 Dcrc32.c70 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 Dcrc32.c70 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 Dobj-evax.c349 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 Dobj-evax.c349 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 Dieee80211_crypto_wep.c247 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 Dieee80211_crypto_tkip.c373 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 DMakefile39 SRCS+= check.c crc32_table.c crc64_table.c
/netbsd-src/external/gpl3/binutils.old/dist/bfd/
H A Dopncls.c1111 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 Dopncls.c1120 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 Dxz-file-format.txt1041 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 Delf.c413 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 Delf.c460 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 Ddwarf.c11395 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 Ddwarf.c11228 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 DChangeLog-20134836 * remote.c (crc32_table, crc32): Remove.
H A DChangeLog-20093677 * utils.c (gnu_debuglink_crc32): Store crc32_table as unsigned int
/netbsd-src/external/gpl3/gdb.old/dist/gdb/
H A DChangeLog-20093677 * utils.c (gnu_debuglink_crc32): Store crc32_table as unsigned int
H A DChangeLog-20134836 * remote.c (crc32_table, crc32): Remove.
/netbsd-src/external/gpl3/gdb/dist/gdbserver/
H A DChangeLog-2002-20219678 * server.c (crc32_table): Delete.