Home
last modified time | relevance | path

Searched refs:crc_table (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/contrib/zlib/
H A Dcrc32.c57 local z_crc_t FAR crc_table[TBLS][256]; variable
113 crc_table[0][n] = c; in make_crc_table()
120 c = crc_table[0][n]; in make_crc_table()
121 crc_table[4][n] = ZSWAP32(c); in make_crc_table()
124 crc_table[k][n] = c; in make_crc_table()
149 write_table(out, crc_table[0]); in make_crc_table()
194 return (const z_crc_t FAR *)crc_table; in get_crc_table()
261 c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \
262 crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24]
301 c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \
[all …]
H A Dcrc32.h5 local const z_crc_t FAR crc_table[TBLS][256] = variable
H A DChangeLog152 - Fix type mismatch between get_crc_table() and crc_table
296 - Use u4 type for crc_table to avoid conversion warnings
/f-stack/freebsd/contrib/ncsw/inc/Peripherals/
H A Dcrc_mac_addr_ext.h49 static uint32_t crc_table[256] = variable
321 crc = crc_table[crc&0xff] ^ (crc>>8); \
/f-stack/freebsd/contrib/zlib/doc/
H A Drfc1952.txt606 unsigned long crc_table[256];
633 crc_table[n] = c;
660 c = crc_table[(c ^ buf[n]) & 0xff] ^ (c >> 8);