Lines Matching refs:width

60 	unsigned int width;  member
112 result->width = (unsigned int)dim[0] | (((unsigned int)dim[1])<<8); in php_handle_gif()
135 …result->width = (((unsigned int)dim[4]) << 24) + (((unsigned int)dim[5]) << 16) + (((unsigned … in php_handle_psd()
157 result->width = (((unsigned int)dim[ 5]) << 8) + ((unsigned int) dim[ 4]); in php_handle_bmp()
162 …result->width = (((unsigned int)dim[ 7]) << 24) + (((unsigned int)dim[ 6]) << 16) + (((unsigne… in php_handle_bmp()
258 result->width = (php_swf_get_bits (b, 5 + bits, bits) - in php_handle_swc()
287 result->width = (php_swf_get_bits (a, 5 + bits, bits) - in php_handle_swf()
319 …result->width = (((unsigned int)dim[0]) << 24) + (((unsigned int)dim[1]) << 16) + (((unsigned int… in php_handle_png()
506 result->width = php_read2(stream); in php_handle_jpeg()
632 result->width = php_read4(stream); /* Xsiz */ in php_handle_jpc()
807 size_t ifd_size, dir_size, entry_value, width=0, height=0, ifd_addr; in php_handle_tiff() local
859 width = entry_value; in php_handle_tiff()
868 if ( width && height) { in php_handle_tiff()
872 result->width = width; in php_handle_tiff()
888 short width, height, bits; in php_handle_iff() local
914 width = php_ifd_get16s(a+0, 1); in php_handle_iff()
917 if (width > 0 && height > 0 && bits > 0 && bits < 33) { in php_handle_iff()
919 result->width = width; in php_handle_iff()
945 int i, width = 0, height = 0; in php_get_wbmp() local
970 width = (width << 7) | (i & 0x7f); in php_get_wbmp()
972 if (width > 2048) { in php_get_wbmp()
990 if (!height || !width) { in php_get_wbmp()
995 (*result)->width = width; in php_get_wbmp()
1024 unsigned int width = 0, height = 0; in php_get_xbm() local
1042 width = (unsigned int) value; in php_get_xbm()
1050 if (width) { in php_get_xbm()
1063 if (width && height) { in php_get_xbm()
1066 (*result)->width = width; in php_get_xbm()
1109 result->width = (unsigned int)dim[0]; in php_handle_ico()
1116 if (0 == result->width) in php_handle_ico()
1117 result->width = 256; in php_handle_ico()
1154 result->width = buf[14] + ((buf[15] & 0x3F) << 8); in php_handle_webp()
1158 result->width = buf[9] + ((buf[10] & 0x3F) << 8) + 1; in php_handle_webp()
1162 result->width = buf[12] + (buf[13] << 8) + (buf[14] << 16) + 1; in php_handle_webp()
1571 add_index_long(return_value, 0, result->width); in php_getimagesize_from_stream()
1574 snprintf(temp, sizeof(temp), "width=\"%d\" height=\"%d\"", result->width, result->height); in php_getimagesize_from_stream()