Lines Matching defs:skip
196 /* Optionally skip data and then check the CRC. Depending on whether we
202 png_crc_finish(png_structrp png_ptr, png_uint_32 skip)
207 while (skip > 0)
213 if (len > skip)
214 len = skip;
215 skip -= len;
239 /* If tile index is used to skip over data and decode a partial image
247 png_opt_crc_finish(png_structrp png_ptr, png_uint_32 skip)
249 while (skip > 0)
255 if (len > skip)
256 len = skip;
257 skip -= len;
1263 /* If a colorspace error has already been output skip this chunk */
1312 /* If a colorspace error has already been output skip this chunk */
1367 /* If a colorspace error has already been output skip this chunk */
1615 png_uint_32 skip = 0;
1673 if (png_crc_finish(png_ptr, skip))
2233 buf++; /* Skip the null string terminator from previous parameter. */
2404 png_uint_32 skip = 0;
2451 if (png_crc_finish(png_ptr, skip))
2822 /* One of the following methods will read the chunk or skip it (at least one
2892 /* Use the SAVE_UNKNOWN_CHUNKS code or skip the chunk */
2900 * if not simply skip the chunk.
2923 * compiled in to just save the unknown chunks, so simply skip this
2985 /* There is no support to read an unknown chunk, so just skip it. */
3289 * fixed number of pixels to copy then to skip. There may be a
3290 * different number of pixels to skip at the start though.
3404 size_t skip = (bytes_to_jump-bytes_to_copy) /
3420 dp32 += skip;
3421 sp32 += skip;
3446 size_t skip = (bytes_to_jump-bytes_to_copy) /
3462 dp16 += skip;
3463 sp16 += skip;