Lines Matching defs:buffer
94 * buffer
96 * @buffer: data pointer
97 * @len: number of bytes in the buffer
99 u16 crc_ccitt(u16 crc, u8 const *buffer, size_t len)
102 crc = crc_ccitt_byte(crc, *buffer++);
109 * for the data buffer
111 * @buffer: data pointer
112 * @len: number of bytes in the buffer
114 u16 crc_ccitt_false(u16 crc, u8 const *buffer, size_t len)
117 crc = crc_ccitt_false_byte(crc, *buffer++);