Lines Matching refs:next_buf_row
62 int next_buf_row; /* index of next row to store in color_buf */ member
88 prep->next_buf_row = 0; in start_pass_prep()
143 numrows = cinfo->max_v_samp_factor - prep->next_buf_row; in pre_process_data()
147 (JDIMENSION) prep->next_buf_row, in pre_process_data()
150 prep->next_buf_row += numrows; in pre_process_data()
154 prep->next_buf_row < cinfo->max_v_samp_factor) { in pre_process_data()
157 prep->next_buf_row, cinfo->max_v_samp_factor); in pre_process_data()
159 prep->next_buf_row = cinfo->max_v_samp_factor; in pre_process_data()
162 if (prep->next_buf_row == cinfo->max_v_samp_factor) { in pre_process_data()
166 prep->next_buf_row = 0; in pre_process_data()
210 numrows = prep->next_buf_stop - prep->next_buf_row; in pre_process_context()
214 (JDIMENSION) prep->next_buf_row, in pre_process_context()
228 prep->next_buf_row += numrows; in pre_process_context()
235 if (prep->next_buf_row < prep->next_buf_stop) { in pre_process_context()
238 prep->next_buf_row, prep->next_buf_stop); in pre_process_context()
240 prep->next_buf_row = prep->next_buf_stop; in pre_process_context()
244 if (prep->next_buf_row == prep->next_buf_stop) { in pre_process_context()
254 if (prep->next_buf_row >= buf_height) in pre_process_context()
255 prep->next_buf_row = 0; in pre_process_context()
256 prep->next_buf_stop = prep->next_buf_row + cinfo->max_v_samp_factor; in pre_process_context()