Home | History | Annotate | Download | only in cksum

Lines Matching defs:thecrc

53 	uint32_t thecrc;
64 * thecrc = (r % 2^16) + r / 2^16
66 thecrc = 0;
70 thecrc += *p;
74 thecrc = (thecrc & 0xffff) + (thecrc >> 16);
75 thecrc = (thecrc & 0xffff) + (thecrc >> 16);
77 *cval = thecrc;