Lines Matching refs:height

68 	unsigned int height;  member
119 result->height = (unsigned int)dim[2] | (((unsigned int)dim[3])<<8); in php_handle_gif()
141 …result->height = (((unsigned int)dim[0]) << 24) + (((unsigned int)dim[1]) << 16) + (((unsigned … in php_handle_psd()
166 result->height = (((unsigned int)dim[ 7]) << 8) + ((unsigned int) dim[ 6]); in php_handle_bmp()
171 …result->height = (((unsigned int)dim[11]) << 24) + (((unsigned int)dim[10]) << 16) + (((unsigne… in php_handle_bmp()
172 result->height = abs((int32_t)result->height); in php_handle_bmp()
269 result->height = (php_swf_get_bits (b, 5 + (3 * bits), bits) - in php_handle_swc()
299 result->height = (php_swf_get_bits (a, 5 + (3 * bits), bits) - in php_handle_swf()
330 …result->height = (((unsigned int)dim[4]) << 24) + (((unsigned int)dim[5]) << 16) + (((unsigned int… in php_handle_png()
503 result->height = php_read2(stream); in php_handle_jpeg()
632 result->height = php_read4(stream); /* Ysiz */ in php_handle_jpc()
807 size_t ifd_size, dir_size, entry_value, width=0, height=0, ifd_addr; in php_handle_tiff() local
863 height = entry_value; in php_handle_tiff()
868 if ( width && height) { in php_handle_tiff()
871 result->height = height; in php_handle_tiff()
889 short width, height, bits; in php_handle_iff() local
916 height = php_ifd_get16s(a+2, 1); in php_handle_iff()
918 if (width > 0 && height > 0 && bits > 0 && bits < 33) { in php_handle_iff()
921 result->height = height; in php_handle_iff()
946 int i, width = 0, height = 0; in php_get_wbmp() local
984 height = (height << 7) | (i & 0x7f); in php_get_wbmp()
986 if (height > 2048) { in php_get_wbmp()
991 if (!height || !width) { in php_get_wbmp()
997 (*result)->height = height; in php_get_wbmp()
1027 unsigned int width = 0, height = 0; in php_get_xbm() local
1046 if (height) { in php_get_xbm()
1052 height = (unsigned int) value; in php_get_xbm()
1066 if (width && height) { in php_get_xbm()
1070 (*result)->height = height; in php_get_xbm()
1115 result->height = (unsigned int)dim[1]; in php_handle_ico()
1155 result->height = buf[16] + ((buf[17] & 0x3F) << 8); in php_handle_webp()
1159 result->height = (buf[10] >> 6) + (buf[11] << 2) + ((buf[12] & 0xF) << 10) + 1; in php_handle_webp()
1163 result->height = buf[15] + (buf[16] << 8) + (buf[17] << 16) + 1; in php_handle_webp()
1444 add_index_long(return_value, 1, result->height); in php_getimagesize_from_stream()
1446 snprintf(temp, sizeof(temp), "width=\"%d\" height=\"%d\"", result->width, result->height); in php_getimagesize_from_stream()