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

Lines Matching full:row_bytes

4020    png_uint_32 row_bytes;
4038 row_bytes = PNG_ROWBYTES(png_ptr->pixel_depth,png_ptr->iwidth) + 1;
4040 png_ptr->irowbytes = (png_size_t)row_bytes;
4041 if((png_uint_32)png_ptr->irowbytes != row_bytes)
4154 row_bytes = ((png_ptr->width + 7) & ~((png_uint_32)7));
4157 row_bytes = PNG_ROWBYTES(max_pixel_depth,row_bytes) +
4160 if (row_bytes > (png_uint_32)65536L)
4163 png_ptr->big_row_buf = (png_bytep)png_malloc(png_ptr, row_bytes+64);
4166 png_ptr->row_buf_size = row_bytes;