Home
last modified time | relevance | path

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

/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/unused/
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 …]
/AliOS-Things-master/components/py_engine/external/unzip/src/
A Dcrc32.c79 local unsigned long FAR crc_table[TBLS][256]; variable
135 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 …]
/AliOS-Things-master/components/py_engine/external/unzip/internal/
A Dcrc32.h5 local const unsigned long FAR crc_table[TBLS][256] = variable
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/
A Dcrc32.h5 local const z_crc_t FAR crc_table[TBLS][256] = variable
A DChangeLog152 - Fix type mismatch between get_crc_table() and crc_table
296 - Use u4 type for crc_table to avoid conversion warnings
/AliOS-Things-master/components/ble_mesh/bt_mesh/core/src/
A Dcrypto.c731 static const u8_t crc_table[256] = { variable
778 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()
/AliOS-Things-master/components/ble_host/bt_host/hci_driver/
A Dh5.c323 static const uint16_t crc_table[] = { variable
343 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()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/tools/
A Dpngfix.c488 static png_uint_32 crc_table[256] = variable
553 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()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/doc/
A Drfc1952.txt606 unsigned long crc_table[256];
633 crc_table[n] = c;
660 c = crc_table[(c ^ buf[n]) & 0xff] ^ (c >> 8);

Completed in 36 milliseconds