Lines Matching refs:list_pos
649 int list_start = 64, list_end = 64, list_pos; in read_dct_coeffs() local
664 list_pos = list_start; in read_dct_coeffs()
665 while (list_pos < list_end) { in read_dct_coeffs()
666 if (!(mode_list[list_pos] | coef_list[list_pos]) || !get_bits1(gb)) { in read_dct_coeffs()
667 list_pos++; in read_dct_coeffs()
670 ccoef = coef_list[list_pos]; in read_dct_coeffs()
671 mode = mode_list[list_pos]; in read_dct_coeffs()
674 coef_list[list_pos] = ccoef + 4; in read_dct_coeffs()
675 mode_list[list_pos] = 1; in read_dct_coeffs()
678 coef_list[list_pos] = 0; in read_dct_coeffs()
679 mode_list[list_pos++] = 0; in read_dct_coeffs()
699 mode_list[list_pos] = 2; in read_dct_coeffs()
716 coef_list[list_pos] = 0; in read_dct_coeffs()
717 mode_list[list_pos++] = 0; in read_dct_coeffs()
763 int list_start = 64, list_end = 64, list_pos; in read_residue() local
784 list_pos = list_start; in read_residue()
785 while (list_pos < list_end) { in read_residue()
786 if (!(coef_list[list_pos] | mode_list[list_pos]) || !get_bits1(gb)) { in read_residue()
787 list_pos++; in read_residue()
790 ccoef = coef_list[list_pos]; in read_residue()
791 mode = mode_list[list_pos]; in read_residue()
794 coef_list[list_pos] = ccoef + 4; in read_residue()
795 mode_list[list_pos] = 1; in read_residue()
798 coef_list[list_pos] = 0; in read_residue()
799 mode_list[list_pos++] = 0; in read_residue()
816 mode_list[list_pos] = 2; in read_residue()
827 coef_list[list_pos] = 0; in read_residue()
828 mode_list[list_pos++] = 0; in read_residue()