Home | History | Annotate | Download | only in omapip

Lines Matching defs:accum

247 	register unsigned accum = 0;
259 accum = (accum << 1) + c;
262 while (accum > 65535) {
263 accum = (accum & 65535) + (accum >> 16);
267 return accum % size;
273 register unsigned accum = 0;
279 accum = (accum << 1) + *s++;
282 while (accum > 65535) {
283 accum = (accum & 65535) + (accum >> 16);
286 return accum % size;
297 register unsigned accum = 0;
313 accum ^= *s++ << 8;
315 accum ^= *s++;
320 accum ^= *s++ << 16;
321 accum ^= *s++ << 8;
322 accum ^= *s++;
325 return accum % size;