Lines Matching refs:width

60 	unsigned int width;  member
111 result->width = (unsigned int)dim[0] | (((unsigned int)dim[1])<<8); in php_handle_gif()
134 …result->width = (((unsigned int)dim[4]) << 24) + (((unsigned int)dim[5]) << 16) + (((unsigned … in php_handle_psd()
156 result->width = (((unsigned int)dim[ 5]) << 8) + ((unsigned int) dim[ 4]); in php_handle_bmp()
161 …result->width = (((unsigned int)dim[ 7]) << 24) + (((unsigned int)dim[ 6]) << 16) + (((unsigne… in php_handle_bmp()
257 result->width = (php_swf_get_bits (b, 5 + bits, bits) - in php_handle_swc()
286 result->width = (php_swf_get_bits (a, 5 + bits, bits) - in php_handle_swf()
318 …result->width = (((unsigned int)dim[0]) << 24) + (((unsigned int)dim[1]) << 16) + (((unsigned int… in php_handle_png()
491 result->width = php_read2(stream); in php_handle_jpeg()
617 result->width = php_read4(stream); /* Xsiz */ in php_handle_jpc()
792 size_t ifd_size, dir_size, entry_value, width=0, height=0, ifd_addr; in php_handle_tiff() local
844 width = entry_value; in php_handle_tiff()
853 if ( width && height) { in php_handle_tiff()
857 result->width = width; in php_handle_tiff()
873 short width, height, bits; in php_handle_iff() local
899 width = php_ifd_get16s(a+0, 1); in php_handle_iff()
902 if (width > 0 && height > 0 && bits > 0 && bits < 33) { in php_handle_iff()
904 result->width = width; in php_handle_iff()
930 int i, width = 0, height = 0; in php_get_wbmp() local
955 width = (width << 7) | (i & 0x7f); in php_get_wbmp()
957 if (width > 2048) { in php_get_wbmp()
975 if (!height || !width) { in php_get_wbmp()
980 (*result)->width = width; in php_get_wbmp()
1009 unsigned int width = 0, height = 0; in php_get_xbm() local
1027 width = (unsigned int) value; in php_get_xbm()
1035 if (width) { in php_get_xbm()
1048 if (width && height) { in php_get_xbm()
1051 (*result)->width = width; in php_get_xbm()
1094 result->width = (unsigned int)dim[0]; in php_handle_ico()
1101 if (0 == result->width) in php_handle_ico()
1102 result->width = 256; in php_handle_ico()
1139 result->width = buf[14] + ((buf[15] & 0x3F) << 8); in php_handle_webp()
1143 result->width = buf[9] + ((buf[10] & 0x3F) << 8) + 1; in php_handle_webp()
1147 result->width = buf[12] + (buf[13] << 8) + (buf[14] << 16) + 1; in php_handle_webp()
1448 add_index_long(return_value, 0, result->width); in php_getimagesize_from_stream()
1451 snprintf(temp, sizeof(temp), "width=\"%d\" height=\"%d\"", result->width, result->height); in php_getimagesize_from_stream()