Home | History | Annotate | Download | only in cksum

Lines Matching defs:thecrc

120 	uint32_t thecrc;
124 thecrc = 0;
127 thecrc = crc_buf(thecrc, buf, (size_t)nr);
137 thecrc = crc_byte(thecrc, len & 0xff);
140 *cval = ~thecrc;
165 crc_buf(uint32_t thecrc, const void *buf, size_t len)
174 uint32_t a = be32dec(p + 0) ^ thecrc;
178 thecrc =
198 COMPUTE(thecrc, *p);
200 return thecrc;
204 crc_byte(uint32_t thecrc, unsigned int byte_val)
206 COMPUTE(thecrc, byte_val & 0xff);
207 return thecrc;