Searched refs:INT32_MIN (Results 1 – 10 of 10) sorted by relevance
/PHP-8.3/ext/intl/breakiterator/ |
H A D | breakiterator_methods.cpp | 204 if (UNEXPECTED(arg < INT32_MIN || arg > INT32_MAX)) { in _breakiter_int32_ret_int32() 205 zend_argument_value_error(1, "must be between %d and %d", INT32_MIN, INT32_MAX); in _breakiter_int32_ret_int32() 295 if (UNEXPECTED(offset < INT32_MIN || offset > INT32_MAX)) { in PHP_METHOD() 296 zend_argument_value_error(1, "must be between %d and %d", INT32_MIN, INT32_MAX); in PHP_METHOD()
|
/PHP-8.3/ext/intl/calendar/ |
H A D | gregoriancalendar_methods.cpp | 43 if (UNEXPECTED(argument < INT32_MIN || argument > INT32_MAX)) { \ 44 zend_argument_value_error(zpp_arg_position, "must be between %d and %d", INT32_MIN, INT32_MAX); \ 342 if (UNEXPECTED(year < INT32_MIN || year > INT32_MAX)) { in PHP_FUNCTION() 343 zend_argument_value_error(getThis() ? 1 : 2, "must be between %d and %d", INT32_MIN, INT32_MAX); in PHP_FUNCTION()
|
H A D | calendar_methods.cpp | 53 if (UNEXPECTED(argument < INT32_MIN || argument > INT32_MAX)) { \ 55 "must be between %d and %d", INT32_MIN, INT32_MAX); \
|
/PHP-8.3/ext/intl/grapheme/ |
H A D | grapheme_util.h | 40 #define OUTSIDE_STRING(offset, max_len) ( offset <= INT32_MIN || offset > INT32_MAX || (offset < 0 …
|
H A D | grapheme_string.c | 334 if (lstart < INT32_MIN || lstart > INT32_MAX) { in PHP_FUNCTION() 345 if (length < INT32_MIN || length > INT32_MAX) { in PHP_FUNCTION()
|
/PHP-8.3/Zend/ |
H A D | zend_long.h | 46 # define ZEND_LONG_MIN INT32_MIN
|
/PHP-8.3/ext/date/lib/ |
H A D | timelib.h | 95 # ifndef INT32_MIN 96 #define INT32_MIN ((int32_t)_I32_MIN) macro 124 # define TIMELIB_LONG_MIN INT32_MIN
|
/PHP-8.3/ext/intl/timezone/ |
H A D | timezone_methods.cpp | 151 if (UNEXPECTED(Z_LVAL_P(arg) < (zend_long)INT32_MIN || in PHP_FUNCTION() 244 if (UNEXPECTED(offset_arg < (zend_long)INT32_MIN || offset_arg > (zend_long)INT32_MAX)) { in PHP_FUNCTION() 353 if (UNEXPECTED(index < (zend_long)INT32_MIN || index > (zend_long)INT32_MAX)) { in PHP_FUNCTION()
|
/PHP-8.3/ext/intl/dateformat/ |
H A D | dateformat_format.c | 75 Z_LVAL_P(ele_value) < INT32_MIN) { in internal_get_arr_ele()
|
/PHP-8.3/ext/intl/msgformat/ |
H A D | msgformat_helpers.cpp | 481 Z_DVAL_P(elem) < (double)INT32_MIN)) { in umsg_format_helper() 490 Z_LVAL_P(elem) < INT32_MIN)) { in umsg_format_helper()
|
Completed in 40 milliseconds