Lines Matching defs:width

557    png_uint_32 width, height;
575 width = png_get_uint_31(png_ptr, buf);
584 png_ptr->width = width;
619 png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth, png_ptr->width);
623 png_set_IHDR(png_ptr, info_ptr, width, height, bit_depth,
2023 /* Need unit type, width, \0, height: minimum 4 bytes */
2071 png_warning(png_ptr, "Invalid sCAL chunk ignored: bad width format");
2074 png_warning(png_ptr, "Invalid sCAL chunk ignored: non-positive width");
2720 PNG_ROWBYTES(png_ptr->row_info.pixel_depth, png_ptr->width))
2726 PNG_ROWBYTES(png_ptr->row_info.pixel_depth, png_ptr->width));
2741 png_uint_32 row_width = png_ptr->width;
2799 png_uint_32 row_width = png_ptr->width;
2856 png_uint_32 row_width = png_ptr->width;
2910 png_uint_32 row_width = png_ptr->width;
2952 final_width = row_info->width * png_pass_inc[pass];
2958 png_bytep sp = row + (png_size_t)((row_info->width - 1) >> 3);
2970 sshift = (int)((row_info->width + 7) & 0x07);
2980 sshift = 7 - (int)((row_info->width + 7) & 0x07);
2987 for (i = 0; i < row_info->width; i++)
3019 png_bytep sp = row + (png_uint_32)((row_info->width - 1) >> 2);
3029 sshift = (int)(((row_info->width + 3) & 0x03) << 1);
3039 sshift = (int)((3 - ((row_info->width + 3) & 0x03)) << 1);
3046 for (i = 0; i < row_info->width; i++)
3081 png_bytep sp = row + (png_size_t)((row_info->width - 1) >> 1);
3091 sshift = (int)(((row_info->width + 1) & 0x01) << 2);
3101 sshift = (int)((1 - ((row_info->width + 1) & 0x01)) << 2);
3108 for (i = 0; i < row_info->width; i++)
3143 png_bytep sp = row + (png_size_t)(row_info->width - 1)
3151 for (i = 0; i < row_info->width; i++)
3169 row_info->width = final_width;
3345 png_ptr->iwidth = (png_ptr->width +
3474 png_ptr->iwidth = (png_ptr->width +
3484 png_ptr->iwidth = png_ptr->width;
3621 /* Align the width on the next larger 8 pixels. Mainly used
3624 row_bytes = ((png_ptr->width + 7) & ~((png_uint_32)7));
3684 png_debug1(3, "width = %u,", png_ptr->width);