Home | History | Annotate | Download | only in libjpeg

Lines Matching defs:num_rows

134   JDIMENSION num_rows, max_rows;

141 num_rows = 0;
144 post->buffer, &num_rows, max_rows);
147 post->buffer, output_buf + *out_row_ctr, (int) num_rows);
148 *out_row_ctr += num_rows;
166 JDIMENSION old_next_row, num_rows;
184 num_rows = post->next_row - old_next_row;
186 (JSAMPARRAY) NULL, (int) num_rows);
187 *out_row_ctr += num_rows;
210 JDIMENSION num_rows, max_rows;
220 num_rows = post->strip_height - post->next_row; /* available in strip */
222 if (num_rows > max_rows)
223 num_rows = max_rows;
226 if (num_rows > max_rows)
227 num_rows = max_rows;
232 (int) num_rows);
233 *out_row_ctr += num_rows;
236 post->next_row += num_rows;