Searched refs:crctab_hqx (Results 1 – 2 of 2) sorted by relevance
152 static const unsigned short crctab_hqx[256] = { variable942 crc = ((crc<<8)&0xff00) ^ crctab_hqx[(crc>>8)^*bin_data++]; in binascii_crc_hqx_impl()
151 static unsigned short crctab_hqx[256] = { variable861 crc=((crc<<8)&0xff00)^crctab_hqx[((crc>>8)&0xff)^*bin_data++]; in binascii_crc_hqx()