Searched refs:crc_table (Results 1 – 2 of 2) sorted by relevance
60 local z_crc_t FAR crc_table[TBLS][256]; variable116 crc_table[0][n] = c; in make_crc_table()123 c = crc_table[0][n]; in make_crc_table()124 crc_table[4][n] = ZSWAP32(c); in make_crc_table()127 crc_table[k][n] = c; in make_crc_table()152 write_table(out, crc_table[0]); in make_crc_table()197 return (const z_crc_t FAR *)crc_table; in get_crc_table()243 c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \244 crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24]283 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
Completed in 4 milliseconds