Lines Matching refs:height

66 	unsigned int height;  member
117 result->height = (unsigned int)dim[2] | (((unsigned int)dim[3])<<8); in php_handle_gif()
139 …result->height = (((unsigned int)dim[0]) << 24) + (((unsigned int)dim[1]) << 16) + (((unsigned … in php_handle_psd()
164 result->height = (((unsigned int)dim[ 7]) << 8) + ((unsigned int) dim[ 6]); in php_handle_bmp()
169 …result->height = (((unsigned int)dim[11]) << 24) + (((unsigned int)dim[10]) << 16) + (((unsigne… in php_handle_bmp()
170 result->height = abs((int32_t)result->height); in php_handle_bmp()
267 result->height = (php_swf_get_bits (b, 5 + (3 * bits), bits) - in php_handle_swc()
297 result->height = (php_swf_get_bits (a, 5 + (3 * bits), bits) - in php_handle_swf()
328 …result->height = (((unsigned int)dim[4]) << 24) + (((unsigned int)dim[5]) << 16) + (((unsigned int… in php_handle_png()
501 result->height = php_read2(stream); in php_handle_jpeg()
630 result->height = php_read4(stream); /* Ysiz */ in php_handle_jpc()
805 size_t ifd_size, dir_size, entry_value, width=0, height=0, ifd_addr; in php_handle_tiff() local
861 height = entry_value; in php_handle_tiff()
866 if ( width && height) { in php_handle_tiff()
869 result->height = height; in php_handle_tiff()
887 short width, height, bits; in php_handle_iff() local
914 height = php_ifd_get16s(a+2, 1); in php_handle_iff()
916 if (width > 0 && height > 0 && bits > 0 && bits < 33) { in php_handle_iff()
919 result->height = height; in php_handle_iff()
944 int i, width = 0, height = 0; in php_get_wbmp() local
982 height = (height << 7) | (i & 0x7f); in php_get_wbmp()
984 if (height > 2048) { in php_get_wbmp()
989 if (!height || !width) { in php_get_wbmp()
995 (*result)->height = height; in php_get_wbmp()
1025 unsigned int width = 0, height = 0; in php_get_xbm() local
1044 if (height) { in php_get_xbm()
1050 height = (unsigned int) value; in php_get_xbm()
1064 if (width && height) { in php_get_xbm()
1068 (*result)->height = height; in php_get_xbm()
1113 result->height = (unsigned int)dim[1]; in php_handle_ico()
1122 if (0 == result->height) in php_handle_ico()
1123 result->height = 256; in php_handle_ico()
1159 result->height = buf[16] + ((buf[17] & 0x3F) << 8); in php_handle_webp()
1163 result->height = (buf[10] >> 6) + (buf[11] << 2) + ((buf[12] & 0xF) << 10) + 1; in php_handle_webp()
1167 result->height = buf[15] + (buf[16] << 8) + (buf[17] << 16) + 1; in php_handle_webp()
1470 add_index_long(return_value, 1, result->height); in php_getimagesize_from_stream()
1472 snprintf(temp, sizeof(temp), "width=\"%d\" height=\"%d\"", result->width, result->height); in php_getimagesize_from_stream()