HomeSort by relevance Sort by last modified time
    Searched refs:crc_reg (Results 1 - 3 of 3) sorted by null

  /external/libogg/src/
framing.c 282 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>>16)&0xff)
    [all...]
  /external/tremolo/Tremolo/
dpen.s 463 MOV r14,#0 @ r14= crc_reg = 0
481 EOR r2, r2, r14,LSR #24 @ r2 = (crc_reg>>24)^data[j]
482 LDR r2, [r5, r2, LSL #2] @ r2 = crc_lkp[(crc_reg>>24)^data[j]]
485 EOR r14,r2, r14,LSL #8 @ r14= crc_reg = (crc_reg<<8)^r2
framing.c 668 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 420 milliseconds