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

  /external/libxaac/decoder/
ixheaacd_adts_crc_check.c 134 UWORD16 *crc_reg, UWORD8 feed) {
135 *crc_reg =
136 (*crc_reg << 8) ^ ptr_adts_crc_info->crc_lookup[(*crc_reg >> 8) ^ feed];
139 VOID ixheaacd_adts_crc_slow_crc(UWORD16 *crc_reg, UWORD8 feed,
145 tmp ^= (*crc_reg & (1 << 15)) >> 15;
147 *crc_reg <<= 1;
148 *crc_reg ^= tmp;
ixheaacd_aacdecoder.c 115 WORD32 crc_reg = 0; local
352 crc_reg = ixheaacd_adts_crc_start_reg(
411 crc_reg);
491 crc_reg =
553 ixheaacd_adts_crc_end_reg(ptr_adts_crc_info, it_bit_buff, crc_reg);
557 if (ptr_adts_crc_info->str_crc_reg_data[crc_reg].bit_buf_cnt) {
558 ptr_adts_crc_info->str_crc_reg_data[crc_reg].max_bits =
559 ptr_adts_crc_info->str_crc_reg_data[crc_reg].bit_buf_cnt;
598 crc_reg = ixheaacd_adts_crc_start_reg(
672 crc_reg);
    [all...]
ixheaacd_channel.c 468 WORD32 crc_reg = 0; local
478 crc_reg =
539 crc_reg);
    [all...]
ixheaacd_headerdecode.c 320 WORD32 crc_reg; local
325 crc_reg = ixheaacd_adts_crc_start_reg(ptr_adts_crc_info, it_bit_buff,
354 ixheaacd_adts_crc_end_reg(ptr_adts_crc_info, it_bit_buff, crc_reg);
    [all...]
  /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 695 milliseconds