Searched refs:crc_table (Results 1 – 5 of 5) sorted by relevance
57 local z_crc_t FAR crc_table[TBLS][256]; variable113 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 …]
5 local const z_crc_t FAR crc_table[TBLS][256] = variable
152 - Fix type mismatch between get_crc_table() and crc_table296 - Use u4 type for crc_table to avoid conversion warnings
49 static uint32_t crc_table[256] = variable321 crc = crc_table[crc&0xff] ^ (crc>>8); \
606 unsigned long crc_table[256];633 crc_table[n] = c;660 c = crc_table[(c ^ buf[n]) & 0xff] ^ (c >> 8);