Home | History | Annotate | Download | only in libpng

Lines Matching defs:row_end

1527    png_uint_16p row_end;
1552 * above to 'row' means that row_end can actually be beyond the end of the
1555 row_end = output_row + image->width * (channels+1);
1562 while (out_ptr < row_end)
1690 png_bytep row_end;
1705 /* Use row_end in place of a loop counter: */
1706 row_end = output_row + image->width * (channels+1);
1713 while (out_ptr < row_end)
1734 } /* while out_ptr < row_end */
1744 /* No alpha channel, so the row_end really is the end of the row and it
1747 png_bytep row_end = output_row + image->width * channels;
1754 while (out_ptr < row_end)