Home
last modified time | relevance | path

Searched refs:tmp_w (Results 1 – 1 of 1) sorted by relevance

/PHP-8.1/ext/gd/
H A Dgd.c3757 zend_long tmp_w, tmp_h=-1, tmp_m = GD_BILINEAR_FIXED; in PHP_FUNCTION() local
3760 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Ol|ll", &IM, gd_image_ce, &tmp_w, &tmp_h, &tmp_m) == F… in PHP_FUNCTION()
3767 if (tmp_h < 0 || tmp_w < 0) { in PHP_FUNCTION()
3775 tmp_h = tmp_w * src_y / src_x; in PHP_FUNCTION()
3777 if (src_y && tmp_w < 0) { in PHP_FUNCTION()
3778 tmp_w = tmp_h * src_x / src_y; in PHP_FUNCTION()
3782 if (tmp_h <= 0 || tmp_h > INT_MAX || tmp_w <= 0 || tmp_w > INT_MAX) { in PHP_FUNCTION()
3786 new_width = tmp_w; in PHP_FUNCTION()

Completed in 13 milliseconds