Home
last modified time | relevance | path

Searched refs:crc16_align (Results 1 – 2 of 2) sorted by relevance

/external/flac/src/libFLAC/
Dbitreader.c113 …uint32_t crc16_align; /* the number of bits in the current consumed word that should not be CRC'd … member
122 for ( ; br->crc16_align < FLAC__BITS_PER_WORD ; br->crc16_align += 8) { in crc16_update_word_()
123 uint32_t shift = FLAC__BITS_PER_WORD - 8 - br->crc16_align ; in crc16_update_word_()
128 br->crc16_align = 0; in crc16_update_word_()
133 if(br->consumed_words > br->crc16_offset && br->crc16_align) in crc16_update_block_()
341 br->crc16_align = br->consumed_bits; in FLAC__bitreader_reset_read_crc16()
353 FLAC__ASSERT(br->crc16_align <= br->consumed_bits); in FLAC__bitreader_get_read_crc16()
358 for( ; br->crc16_align < br->consumed_bits; br->crc16_align += 8) in FLAC__bitreader_get_read_crc16()
359 …br->read_crc16 = FLAC__CRC16_UPDATE((uint32_t)((tail >> (FLAC__BITS_PER_WORD-8-br->crc16_align)) &… in FLAC__bitreader_get_read_crc16()
/external/flac/src/test_libFLAC/
Dbitreader.c61 …uint32_t crc16_align; /* the number of bits in the current consumed word that should not be CRC'd … member