Home | History | Annotate | Download | only in libjpeg_turbo

Lines Matching defs:num_rows

133   JDIMENSION num_rows, max_rows;
140 num_rows = 0;
143 post->buffer, &num_rows, max_rows);
146 post->buffer, output_buf + *out_row_ctr, (int) num_rows);
147 *out_row_ctr += num_rows;
165 JDIMENSION old_next_row, num_rows;
183 num_rows = post->next_row - old_next_row;
185 (JSAMPARRAY) NULL, (int) num_rows);
186 *out_row_ctr += num_rows;
209 JDIMENSION num_rows, max_rows;
219 num_rows = post->strip_height - post->next_row; /* available in strip */
221 if (num_rows > max_rows)
222 num_rows = max_rows;
225 if (num_rows > max_rows)
226 num_rows = max_rows;
231 (int) num_rows);
232 *out_row_ctr += num_rows;
235 post->next_row += num_rows;