Searched refs:idat_size (Results 1 - 12 of 12) sorted by relevance

/external/libpng/
H A Dpngpread.c264 png_ptr->idat_size = png_ptr->push_length;
560 png_ptr->idat_size = png_ptr->push_length;
563 if (png_ptr->idat_size != 0 && png_ptr->save_buffer_size != 0)
566 png_uint_32 idat_size = png_ptr->idat_size; local
568 /* We want the smaller of 'idat_size' and 'current_buffer_size', but they
574 if (idat_size < save_size)
575 save_size = (png_size_t)idat_size;
578 idat_size = (png_uint_32)save_size;
584 png_ptr->idat_size
593 png_uint_32 idat_size = png_ptr->idat_size; local
[all...]
H A Dpngstruct.h237 png_uint_32 idat_size; /* current IDAT size for read */ member in struct:png_struct_def
H A Dpngrutil.c4149 while (png_ptr->idat_size == 0)
4153 png_ptr->idat_size = png_read_chunk_header(png_ptr);
4163 if (avail_in > png_ptr->idat_size)
4164 avail_in = (uInt)png_ptr->idat_size;
4174 png_ptr->idat_size -= avail_in;
4224 if (png_ptr->zstream.avail_in > 0 || png_ptr->idat_size > 0)
4298 * crc_finish here. If idat_size is non-zero we also need to read the
4301 (void)png_crc_finish(png_ptr, png_ptr->idat_size);
H A Dpngread.c154 png_ptr->idat_size = 0; /* It has been consumed */
164 png_ptr->idat_size = length;
/external/pdfium/third_party/libpng16/
H A Dpngpread.c263 png_ptr->idat_size = png_ptr->push_length;
556 png_ptr->idat_size = png_ptr->push_length;
559 if (png_ptr->idat_size != 0 && png_ptr->save_buffer_size != 0)
562 png_uint_32 idat_size = png_ptr->idat_size; local
564 /* We want the smaller of 'idat_size' and 'current_buffer_size', but they
570 if (idat_size < save_size)
571 save_size = (png_size_t)idat_size;
574 idat_size = (png_uint_32)save_size;
580 png_ptr->idat_size
589 png_uint_32 idat_size = png_ptr->idat_size; local
[all...]
H A Dpngstruct.h237 png_uint_32 idat_size; /* current IDAT size for read */ member in struct:png_struct_def
H A Dpngrutil.c4017 while (png_ptr->idat_size == 0)
4021 png_ptr->idat_size = png_read_chunk_header(png_ptr);
4031 if (avail_in > png_ptr->idat_size)
4032 avail_in = (uInt)png_ptr->idat_size;
4042 png_ptr->idat_size -= avail_in;
4092 if (png_ptr->zstream.avail_in > 0 || png_ptr->idat_size > 0)
4166 * crc_finish here. If idat_size is non-zero we also need to read the
4169 (void)png_crc_finish(png_ptr, png_ptr->idat_size);
H A Dpngread.c154 png_ptr->idat_size = 0; /* It has been consumed */
164 png_ptr->idat_size = length;
/external/syslinux/com32/lib/libpng/
H A Dpngpread.c330 png_ptr->idat_size = png_ptr->push_length;
767 png_ptr->idat_size = png_ptr->push_length;
769 if (png_ptr->idat_size && png_ptr->save_buffer_size)
773 if (png_ptr->idat_size < (png_uint_32)png_ptr->save_buffer_size)
775 save_size = (png_size_t)png_ptr->idat_size;
778 if ((png_uint_32)save_size != png_ptr->idat_size)
788 png_ptr->idat_size -= save_size;
793 if (png_ptr->idat_size && png_ptr->current_buffer_size)
797 if (png_ptr->idat_size < (png_uint_32)png_ptr->current_buffer_size)
799 save_size = (png_size_t)png_ptr->idat_size;
[all...]
H A Dpngread.c484 png_ptr->idat_size = length;
737 while (!png_ptr->idat_size)
741 png_ptr->idat_size = png_read_chunk_header(png_ptr);
747 if (png_ptr->zbuf_size > png_ptr->idat_size)
748 png_ptr->zstream.avail_in = (uInt)png_ptr->idat_size;
751 png_ptr->idat_size -= png_ptr->zstream.avail_in;
757 png_ptr->idat_size)
H A Dpngrutil.c3121 while (!png_ptr->idat_size)
3128 png_ptr->idat_size = png_get_uint_31(png_ptr, chunk_length);
3137 if (png_ptr->zbuf_size > png_ptr->idat_size)
3138 png_ptr->zstream.avail_in = (uInt)png_ptr->idat_size;
3140 png_ptr->idat_size -= png_ptr->zstream.avail_in;
3146 png_ptr->idat_size)
3168 if (png_ptr->idat_size || png_ptr->zstream.avail_in)
/external/syslinux/com32/include/
H A Dpng.h1306 png_uint_32 idat_size PNG_DEPSTRUCT; /* current IDAT size for read */

Completed in 484 milliseconds