Searched refs:crc_reg (Results 1 - 3 of 3) sorted by relevance

/external/libogg/src/
H A Dframing.c282 ogg_uint32_t crc_reg=0; local
292 crc_reg=(crc_reg<<8)^crc_lookup[((crc_reg >> 24)&0xff)^og->header[i]];
294 crc_reg=(crc_reg<<8)^crc_lookup[((crc_reg >> 24)&0xff)^og->body[i]];
296 og->header[22]=(unsigned char)(crc_reg&0xff);
297 og->header[23]=(unsigned char)((crc_reg>>8)&0xff);
298 og->header[24]=(unsigned char)((crc_reg>>1
[all...]
/external/tremolo/Tremolo/
H A Ddpen.s460 MOV r14,#0 @ r14= crc_reg = 0
478 EOR r2, r2, r14,LSR #24 @ r2 = (crc_reg>>24)^data[j]
479 LDR r2, [r5, r2, LSL #2] @ r2 = crc_lkp[(crc_reg>>24)^data[j]]
482 EOR r14,r2, r14,LSL #8 @ r14= crc_reg = (crc_reg<<8)^r2
H A Dframing.c668 ogg_uint32_t crc_reg=0; local
675 crc_reg=(crc_reg<<8)^crc_lookup[((crc_reg >> 24)&0xff)^data[j]];
680 return crc_reg;

Completed in 63 milliseconds