Lines Matching refs:bit_pos
79 WORD cblock_decode_huff_symbol(UWORD8 *ptr_read_next, WORD32 bit_pos, in cblock_decode_huff_symbol() argument
91 read_word1 = *readword << bit_pos; in cblock_decode_huff_symbol()
102 bit_pos += first_offset; in cblock_decode_huff_symbol()
104 if ((bit_pos -= 8) >= 0) { in cblock_decode_huff_symbol()
108 bit_pos += 8; in cblock_decode_huff_symbol()
121 bit_pos += ((sign_ret_val & 0x7fff) >> 11); in cblock_decode_huff_symbol()
122 if ((bit_pos - 8) >= 0) { in cblock_decode_huff_symbol()
216 WORD32 bit_pos = 7 - bs->bit_pos; in ixheaacd_dec_coupling_channel_element() local
221 read_word1 = read_word << bit_pos; in ixheaacd_dec_coupling_channel_element()
224 bit_pos += length; in ixheaacd_dec_coupling_channel_element()
226 ixheaacd_aac_read_byte(&ptr_read_next, &bit_pos, &read_word); in ixheaacd_dec_coupling_channel_element()
227 while (bit_pos > 8) in ixheaacd_dec_coupling_channel_element()
228 ixheaacd_aac_read_byte(&ptr_read_next, &bit_pos, &read_word); in ixheaacd_dec_coupling_channel_element()
231 bs->bit_pos = 7 - bit_pos; in ixheaacd_dec_coupling_channel_element()