Home | History | Annotate | Download | only in jpeg-6b

Lines Matching refs:max_rows

133   JDIMENSION num_rows, max_rows;
137 max_rows = out_rows_avail - *out_row_ctr;
138 if (max_rows > post->strip_height)
139 max_rows = post->strip_height;
143 post->buffer, &num_rows, max_rows);
209 JDIMENSION num_rows, max_rows;
220 max_rows = out_rows_avail - *out_row_ctr; /* available in output area */
221 if (num_rows > max_rows)
222 num_rows = max_rows;
224 max_rows = cinfo->output_height - post->starting_row;
225 if (num_rows > max_rows)
226 num_rows = max_rows;