Home | History | Annotate | Download | only in jpeg

Lines Matching refs:next_row

39   JDIMENSION next_row;		/* index of next row to fill/empty in strip */
116 post->starting_row = post->next_row = 0;
168 if (post->next_row == 0) {
175 old_next_row = post->next_row;
178 post->buffer, &post->next_row, post->strip_height);
182 if (post->next_row > old_next_row) {
183 num_rows = post->next_row - old_next_row;
190 if (post->next_row >= post->strip_height) {
192 post->next_row = 0;
212 if (post->next_row == 0) {
219 num_rows = post->strip_height - post->next_row; /* available in strip */
230 post->buffer + post->next_row, output_buf + *out_row_ctr,
235 post->next_row += num_rows;
236 if (post->next_row >= post->strip_height) {
238 post->next_row = 0;