Lines Matching defs:crc
187 unsigned short crc=0;190 crc = crc_table[(crc>>8 ^ *s++) & 0xff] ^ (crc<<8);191 return crc;198 unsigned short crc=0;204 crc = crc_table[(crc>>8 ^ (*s>>8)) & 0xff] ^ (crc<<8);205 crc = crc_table[(crc>>8 ^ (*s++ & 0xff)) & 0xff] ^ (crc<<8);207 return crc;