Searched defs:crc_reg (Results 1 - 2 of 2) sorted by relevance

/external/tremolo/Tremolo/
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;
/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...]

Completed in 288 milliseconds