Searched refs:CRC10_FCS (Results 1 – 1 of 1) sorted by relevance
168 #define CRC10_FCS(fcs, c) ((((fcs) << 8) & 0x3ff) ^ crc10_table[((fcs) >> 2) & 0xff] ^ (c)) macro181 for (; len-- > 0; fcs = CRC10_FCS(fcs, *sp++)); in fcs_compute10()