Home
last modified time | relevance | path

Searched refs:crc_32_tab (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/
Dbinascii.c1052 static const unsigned int crc_32_tab[256] = { variable
1145 crc = crc_32_tab[(crc ^ *bin_data++) & 0xff] ^ (crc >> 8);
/external/python/cpython2/Modules/
Dbinascii.c958 static unsigned int crc_32_tab[256] = { variable
1029 crc = crc_32_tab[(crc ^ *bin_data++) & 0xffU] ^ (crc >> 8); in binascii_crc32()