Lines Matching defs:pass

56  * length, and does not need to be null terminated.  To be safe, pass the
168 /* we may just want to pass the text right through */
1681 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
1744 /* if interlaced, we need to set up width and height of pass */
1775 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
1801 /* if interlaced, go to next pass */
1807 png_ptr->pass++;
1811 /* loop until we find a non-zero width or height pass */
1814 png_ptr->pass++;
1815 if (png_ptr->pass >= 7)
1818 png_pass_inc[png_ptr->pass] - 1 -
1819 png_pass_start[png_ptr->pass]) /
1820 png_pass_inc[png_ptr->pass];
1822 png_pass_yinc[png_ptr->pass] - 1 -
1823 png_pass_ystart[png_ptr->pass]) /
1824 png_pass_yinc[png_ptr->pass];
1831 /* reset the row above the image for the next pass */
1832 if (png_ptr->pass < 7)
1881 /* Pick out the correct pixels for the interlace pass.
1884 * correct pixels for the pass. As the row gets compacted,
1889 png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass)
1892 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
1902 /* we don't have to do anything on the last pass (6) */
1904 if (row != NULL && row_info != NULL && pass < 6)
1906 if (pass < 6)
1925 for (i = png_pass_start[pass]; i < row_width;
1926 i += png_pass_inc[pass])
1959 for (i = png_pass_start[pass]; i < row_width;
1960 i += png_pass_inc[pass])
1992 for (i = png_pass_start[pass]; i < row_width;
1993 i += png_pass_inc[pass])
2026 for (i = png_pass_start[pass]; i < row_width;
2027 i += png_pass_inc[pass])
2042 png_pass_inc[pass] - 1 -
2043 png_pass_start[pass]) /
2044 png_pass_inc[pass];