Searched defs:skip_src_rows (Results 1 - 3 of 3) sorted by relevance

/external/skia/src/images/
H A DSkImageDecoder_libgif.cpp180 static bool skip_src_rows(GifFileType* gif, uint8_t* dst, int width, int rowsToSkip) { function
439 skip_src_rows(gif, scanline, innerWidth, sampler.srcY0());
452 skip_src_rows(gif, scanline, innerWidth, sampler.srcDY() - 1);
458 skip_src_rows(gif, scanline, innerWidth, innerHeight - read);
H A DSkImageDecoder_libpng.cpp162 static void skip_src_rows(png_structp png_ptr, uint8_t storage[], int count) { function
453 skip_src_rows(png_ptr, srcRow, sampler.srcY0());
460 skip_src_rows(png_ptr, srcRow, sampler.srcDY() - 1);
468 skip_src_rows(png_ptr, srcRow, origHeight - read);
939 skip_src_rows(png_ptr, srcRow, sampler.srcY0());
949 skip_src_rows(png_ptr, srcRow, sampler.srcDY() - 1);
H A DSkImageDecoder_libjpeg.cpp306 static bool skip_src_rows(jpeg_decompress_struct* cinfo, void* buffer, int count) { function
709 if (!skip_src_rows(&cinfo, srcRow, sampler.srcY0())) {
739 if (!skip_src_rows(&cinfo, srcRow, sampler.srcDY() - 1)) {
745 if (!skip_src_rows(&cinfo, srcRow,

Completed in 123 milliseconds