Lines Matching refs:row
59 * then fetch the required row from the virtual array on subsequent calls.
69 JDIMENSION row; /* current row # in the virtual array */
71 rle_pixel** rle_row; /* holds a row returned by rle_getrow() */
181 * Read one row of pixels.
191 source->row--;
193 ((j_common_ptr) cinfo, source->image, source->row, (JDIMENSION) 1, FALSE);
199 * Read one row of pixels.
215 source->row--;
217 ((j_common_ptr) cinfo, source->image, source->row, (JDIMENSION) 1, FALSE);
233 * in the upper left. This is called the first time we want to get a row
235 * the appropriate routine to read one row from the array. Before returning,
237 * the appropriate row-reading routine.
244 JDIMENSION row, col;
274 for (row = 0; row < cinfo->image_height; row++) {
276 ((j_common_ptr) cinfo, source->image, row, (JDIMENSION) 1, TRUE);
289 for (row = 0; row < cinfo->image_height; row++) {
291 ((j_common_ptr) cinfo, source->image, row, (JDIMENSION) 1, TRUE);
312 for (row = 0; row < cinfo->image_height; row++) {
314 ((j_common_ptr) cinfo, source->image, row, (JDIMENSION) 1, TRUE);
341 /* Set up to call proper row-extraction routine in future */
348 source->row = cinfo->image_height;
350 /* And fetch the topmost (bottommost) row */