Searched refs:INT_MIN (Results 1 – 12 of 12) sorted by relevance
/php-src/Zend/ |
H A D | zend_range_check.h | 43 # define ZEND_LONG_INT_UDFL(zlong) UNEXPECTED((zlong) < (zend_long)INT_MIN)
|
/php-src/ext/calendar/ |
H A D | julian.c | 179 if (yearl > INT_MAX || yearl < INT_MIN) { in SdnToJulian()
|
/php-src/main/ |
H A D | php.h | 225 #ifndef INT_MIN 226 #define INT_MIN (- INT_MAX - 1) macro
|
/php-src/ext/sockets/ |
H A D | sendrecvmsg.c | 73 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 D | conversions.c | 379 if (lval > INT_MAX || lval < INT_MIN) { in from_zval_write_int()
|
H A D | sockets.c | 1252 zend_argument_value_error(1, "must be between %d and %d", INT_MIN, INT_MAX);
|
/php-src/ext/standard/ |
H A D | math.c | 174 places = places < INT_MIN+1 ? INT_MIN+1 : places; in _php_math_round() 353 places = ZEND_LONG_INT_UDFL(precision) ? INT_MIN : (int)precision; in PHP_FUNCTION() 1384 dec_int = ZEND_LONG_INT_UDFL(dec) ? INT_MIN : (int)dec; in PHP_FUNCTION()
|
H A D | pack.c | 755 if (errno || tmp < INT_MIN || tmp > INT_MAX) { in PHP_FUNCTION()
|
/php-src/ext/gd/ |
H A D | gd.c | 1240 if (degrees < (double)(INT_MIN / 100) || degrees > (double)(INT_MAX / 100)) { in PHP_FUNCTION() 1241 zend_argument_value_error(2, "must be between %d and %d", (INT_MIN / 100), (INT_MAX / 100)); in PHP_FUNCTION() 1768 if (quality < INT_MIN || quality > INT_MAX) { in _php_image_output() 1769 …php_error_docref(NULL, E_WARNING, "Argument #3 ($chunk_size) must be between %d and %d", INT_MIN, … in _php_image_output() 4021 if (affine[i] < INT_MIN || affine[i] > INT_MAX) { in PHP_FUNCTION() 4022 zend_argument_value_error(2, "element %i must be between %d and %d", i, INT_MIN, INT_MAX); in PHP_FUNCTION() 4028 if (affine[i] < INT_MIN || affine[i] > INT_MAX) { in PHP_FUNCTION() 4029 zend_argument_value_error(2, "element %i must be between %d and %d", i, INT_MIN, INT_MAX); in PHP_FUNCTION() 4035 if (affine[i] < INT_MIN || affine[i] > INT_MAX) { in PHP_FUNCTION() 4036 zend_argument_value_error(2, "element %i must be between %d and %d", i, INT_MIN, INT_MAX); in PHP_FUNCTION()
|
/php-src/ext/fileinfo/libmagic/ |
H A D | softmagic.c | 1473 if (lhs >= UINT_MAX || lhs <= INT_MIN || in do_ops() 1474 off >= UINT_MAX || off <= INT_MIN) { in do_ops()
|
/php-src/ext/gd/libgd/ |
H A D | gd.c | 1549 const int ylower = (y < INT_MIN + f->w) ? INT_MIN : y - f->w; in gdImageCharUp()
|
/php-src/ext/exif/ |
H A D | exif.c | 1731 } else if (s_num == INT_MIN && s_den == -1) { in exif_convert_any_to_int()
|
Completed in 96 milliseconds