Searched refs:crc_table (Results 1 – 9 of 9) 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 …]
79 local unsigned long FAR crc_table[TBLS][256]; variable135 crc_table[0][n] = c; in make_crc_table()142 c = crc_table[0][n]; in make_crc_table()143 crc_table[4][n] = REV(c); in make_crc_table()146 crc_table[k][n] = c; in make_crc_table()171 write_table(out, crc_table[0]); in make_crc_table()176 write_table(out, crc_table[k]); in make_crc_table()263 c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \264 crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24]304 c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \[all …]
5 local const unsigned long FAR crc_table[TBLS][256] = variable
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
731 static const u8_t crc_table[256] = { variable778 fcs = crc_table[fcs ^ *data++]; in bt_mesh_fcs_calc()793 fcs = crc_table[fcs ^ *data++]; in bt_mesh_fcs_check()796 return crc_table[fcs ^ received_fcs] == 0xcf; in bt_mesh_fcs_check()
323 static const uint16_t crc_table[] = { variable343 reg = (reg >> 4) ^ crc_table[(reg ^ d) & 0x000f]; in h5_crc_update()344 reg = (reg >> 4) ^ crc_table[(reg ^ (d >> 4)) & 0x000f]; in h5_crc_update()
488 static png_uint_32 crc_table[256] = variable553 return crc_table[(crc ^ b) & 0xff] ^ (crc >> 8); in crc_one_byte()566 png_uint_32 crc = crc_table[(~value >> 24)] ^ 0xffffff; in crc_init_4()568 crc = crc_table[(crc ^ (value >> 16)) & 0xff] ^ (crc >> 8); in crc_init_4()569 crc = crc_table[(crc ^ (value >> 8)) & 0xff] ^ (crc >> 8); in crc_init_4()570 return crc_table[(crc ^ value) & 0xff] ^ (crc >> 8); in crc_init_4()
606 unsigned long crc_table[256];633 crc_table[n] = c;660 c = crc_table[(c ^ buf[n]) & 0xff] ^ (c >> 8);
Completed in 36 milliseconds