Lines Matching refs:width

65 	unsigned int width;  member
116 result->width = (unsigned int)dim[0] | (((unsigned int)dim[1])<<8); in php_handle_gif()
140 …result->width = (((unsigned int)dim[4]) << 24) + (((unsigned int)dim[5]) << 16) + (((unsigned … in php_handle_psd()
163 result->width = (((unsigned int)dim[ 5]) << 8) + ((unsigned int) dim[ 4]); in php_handle_bmp()
168 …result->width = (((unsigned int)dim[ 7]) << 24) + (((unsigned int)dim[ 6]) << 16) + (((unsigne… in php_handle_bmp()
265 result->width = (php_swf_get_bits (b, 5 + bits, bits) - in php_handle_swc()
295 result->width = (php_swf_get_bits (a, 5 + bits, bits) - in php_handle_swf()
327 …result->width = (((unsigned int)dim[0]) << 24) + (((unsigned int)dim[1]) << 16) + (((unsigned int… in php_handle_png()
502 result->width = php_read2(stream); in php_handle_jpeg()
629 result->width = php_read4(stream); /* Xsiz */ in php_handle_jpc()
805 size_t ifd_size, dir_size, entry_value, width=0, height=0, ifd_addr; in php_handle_tiff() local
857 width = entry_value; in php_handle_tiff()
866 if ( width && height) { in php_handle_tiff()
870 result->width = width; in php_handle_tiff()
887 short width, height, bits; in php_handle_iff() local
913 width = php_ifd_get16s(a+0, 1); in php_handle_iff()
916 if (width > 0 && height > 0 && bits > 0 && bits < 33) { in php_handle_iff()
918 result->width = width; in php_handle_iff()
944 int i, width = 0, height = 0; in php_get_wbmp() local
969 width = (width << 7) | (i & 0x7f); in php_get_wbmp()
971 if (width > 2048) { in php_get_wbmp()
989 if (!height || !width) { in php_get_wbmp()
994 (*result)->width = width; in php_get_wbmp()
1025 unsigned int width = 0, height = 0; in php_get_xbm() local
1043 width = (unsigned int) value; in php_get_xbm()
1051 if (width) { in php_get_xbm()
1064 if (width && height) { in php_get_xbm()
1067 (*result)->width = width; in php_get_xbm()
1112 result->width = (unsigned int)dim[0]; in php_handle_ico()
1119 if (0 == result->width) in php_handle_ico()
1120 result->width = 256; in php_handle_ico()
1158 result->width = buf[14] + ((buf[15] & 0x3F) << 8); in php_handle_webp()
1162 result->width = buf[9] + ((buf[10] & 0x3F) << 8) + 1; in php_handle_webp()
1166 result->width = buf[12] + (buf[13] << 8) + (buf[14] << 16) + 1; in php_handle_webp()
1469 add_index_long(return_value, 0, result->width); in php_getimagesize_from_stream()
1472 snprintf(temp, sizeof(temp), "width=\"%d\" height=\"%d\"", result->width, result->height); in php_getimagesize_from_stream()