Lines Matching refs:list_pos
647 int list_start = 64, list_end = 64, list_pos; in read_dct_coeffs() local
662 list_pos = list_start; in read_dct_coeffs()
663 while (list_pos < list_end) { in read_dct_coeffs()
664 if (!(mode_list[list_pos] | coef_list[list_pos]) || !get_bits1(gb)) { in read_dct_coeffs()
665 list_pos++; in read_dct_coeffs()
668 ccoef = coef_list[list_pos]; in read_dct_coeffs()
669 mode = mode_list[list_pos]; in read_dct_coeffs()
672 coef_list[list_pos] = ccoef + 4; in read_dct_coeffs()
673 mode_list[list_pos] = 1; in read_dct_coeffs()
676 coef_list[list_pos] = 0; in read_dct_coeffs()
677 mode_list[list_pos++] = 0; in read_dct_coeffs()
697 mode_list[list_pos] = 2; in read_dct_coeffs()
714 coef_list[list_pos] = 0; in read_dct_coeffs()
715 mode_list[list_pos++] = 0; in read_dct_coeffs()
761 int list_start = 64, list_end = 64, list_pos; in read_residue() local
782 list_pos = list_start; in read_residue()
783 while (list_pos < list_end) { in read_residue()
784 if (!(coef_list[list_pos] | mode_list[list_pos]) || !get_bits1(gb)) { in read_residue()
785 list_pos++; in read_residue()
788 ccoef = coef_list[list_pos]; in read_residue()
789 mode = mode_list[list_pos]; in read_residue()
792 coef_list[list_pos] = ccoef + 4; in read_residue()
793 mode_list[list_pos] = 1; in read_residue()
796 coef_list[list_pos] = 0; in read_residue()
797 mode_list[list_pos++] = 0; in read_residue()
814 mode_list[list_pos] = 2; in read_residue()
825 coef_list[list_pos] = 0; in read_residue()
826 mode_list[list_pos++] = 0; in read_residue()