Home | History | Annotate | Download | only in libpng-1.2.19

Lines Matching refs:pass

54  * length, and does not need to be null terminated.  To be safe, pass the
173 /* we may just want to pass the text right through */
1730 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
1795 /* if interlaced, we need to set up width and height of pass */
1826 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
1852 /* if interlaced, go to next pass */
1858 png_ptr->pass++;
1862 /* loop until we find a non-zero width or height pass */
1865 png_ptr->pass++;
1866 if (png_ptr->pass >= 7)
1869 png_pass_inc[png_ptr->pass] - 1 -
1870 png_pass_start[png_ptr->pass]) /
1871 png_pass_inc[png_ptr->pass];
1873 png_pass_yinc[png_ptr->pass] - 1 -
1874 png_pass_ystart[png_ptr->pass]) /
1875 png_pass_yinc[png_ptr->pass];
1882 /* reset the row above the image for the next pass */
1883 if (png_ptr->pass < 7)
1932 /* Pick out the correct pixels for the interlace pass.
1935 * correct pixels for the pass. As the row gets compacted,
1940 png_do_write_interlace(png_row_infop row_info, png_bytep row, int pass)
1943 /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
1953 /* we don't have to do anything on the last pass (6) */
1955 if (row != NULL && row_info != NULL && pass < 6)
1957 if (pass < 6)
1976 for (i = png_pass_start[pass]; i < row_width;
1977 i += png_pass_inc[pass])
2010 for (i = png_pass_start[pass]; i < row_width;
2011 i += png_pass_inc[pass])
2043 for (i = png_pass_start[pass]; i < row_width;
2044 i += png_pass_inc[pass])
2077 for (i = png_pass_start[pass]; i < row_width;
2078 i += png_pass_inc[pass])
2093 png_pass_inc[pass] - 1 -
2094 png_pass_start[pass]) /
2095 png_pass_inc[pass];