Lines Matching defs:crc
3 * linux/lib/crc-ccitt.c
8 #include <linux/crc-ccitt.h>
95 * @crc: previous CRC value
99 u16 crc_ccitt(u16 crc, u8 const *buffer, size_t len)
102 crc = crc_ccitt_byte(crc, *buffer++);
103 return crc;
110 * @crc: previous CRC value
114 u16 crc_ccitt_false(u16 crc, u8 const *buffer, size_t len)
117 crc = crc_ccitt_false_byte(crc, *buffer++);
118 return crc;