Home
last modified time | relevance | path

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

/PHP-8.3/Zend/
H A Dzend_range_check.h43 # define ZEND_LONG_INT_UDFL(zlong) UNEXPECTED((zlong) < (zend_long)INT_MIN)
/PHP-8.3/ext/standard/
H A Dmath.c134 places = places < INT_MIN+1 ? INT_MIN+1 : places; in _php_math_round()
143 int64_t use_precision = precision_places < INT_MIN+1 ? INT_MIN+1 : precision_places; in _php_math_round()
156 use_precision = use_precision < INT_MIN+1 ? INT_MIN+1 : use_precision; in _php_math_round()
288 places = ZEND_LONG_INT_UDFL(precision) ? INT_MIN : (int)precision; in PHP_FUNCTION()
1282 dec_int = ZEND_LONG_INT_UDFL(dec) ? INT_MIN : (int)dec; in PHP_FUNCTION()
H A Dpack.c757 if (errno || tmp < INT_MIN || tmp > INT_MAX) { in PHP_FUNCTION()
/PHP-8.3/ext/calendar/
H A Djulian.c179 if (yearl > INT_MAX || yearl < INT_MIN) { in SdnToJulian()
/PHP-8.3/main/
H A Dphp.h246 #ifndef INT_MIN
247 #define INT_MIN (- INT_MAX - 1) macro
/PHP-8.3/ext/sockets/
H A Dsendrecvmsg.c73 if ((l) < INT_MIN || (l) > INT_MAX) { \
74 zend_argument_value_error((arg_pos), "must be between %d and %d", INT_MIN, INT_MAX); \
H A Dconversions.c379 if (lval > INT_MAX || lval < INT_MIN) { in from_zval_write_int()
/PHP-8.3/ext/gd/libgd/
H A Dgd.c1495 const int ylower = (y < INT_MIN + f->w) ? INT_MIN : y - f->w; in gdImageCharUp()
/PHP-8.3/ext/gd/
H A Dgd.c1744 if (quality < INT_MIN || quality > INT_MAX) { in _php_image_output()
1745 …php_error_docref(NULL, E_WARNING, "Argument #3 ($chunk_size) must be between %d and %d", INT_MIN, … in _php_image_output()
/PHP-8.3/ext/exif/
H A Dexif.c1731 } else if (s_num == INT_MIN && s_den == -1) { in exif_convert_any_to_int()

Completed in 60 milliseconds