Home | History | Annotate | Download | only in libjpeg-turbo

Lines Matching defs:max_rows

132   JDIMENSION num_rows, max_rows;
136 max_rows = out_rows_avail - *out_row_ctr;
137 if (max_rows > post->strip_height)
138 max_rows = post->strip_height;
142 post->buffer, &num_rows, max_rows);
208 JDIMENSION num_rows, max_rows;
219 max_rows = out_rows_avail - *out_row_ctr; /* available in output area */
220 if (num_rows > max_rows)
221 num_rows = max_rows;
223 max_rows = cinfo->output_height - post->starting_row;
224 if (num_rows > max_rows)
225 num_rows = max_rows;