Searched refs:INT32_MAX (Results 1 – 17 of 17) 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/spoofchecker/ |
H A D | spoofchecker_main.c | 77 if(s1_len > INT32_MAX || s2_len > INT32_MAX) { in PHP_METHOD()
|
/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() 731 if ( lstart > INT32_MAX || lstart < 0 || (size_t)lstart >= str_len ) { in PHP_FUNCTION() 741 if (size > INT32_MAX) { in PHP_FUNCTION()
|
H A D | grapheme_util.c | 55 if(str_len > INT32_MAX) { in grapheme_substr_ascii()
|
/PHP-8.3/ext/intl/ |
H A D | intl_convertcpp.cpp | 26 if(UNEXPECTED(str_len > INT32_MAX)) { in intl_stringFromChar()
|
H A D | intl_convert.c | 62 if(src_len > INT32_MAX) { in intl_convert_utf8_to_utf16()
|
/PHP-8.3/Zend/ |
H A D | zend_long.h | 45 # define ZEND_LONG_MAX INT32_MAX
|
/PHP-8.3/ext/intl/idn/ |
H A D | idn.c | 140 if (ZSTR_LEN(domain) > INT32_MAX - 1) { in php_intl_idn_handoff()
|
/PHP-8.3/ext/date/lib/ |
H A D | timelib.h | 92 # ifndef INT32_MAX 93 #define INT32_MAX _I32_MAX macro 123 # define TIMELIB_LONG_MAX INT32_MAX
|
/PHP-8.3/ext/intl/timezone/ |
H A D | timezone_methods.cpp | 152 Z_LVAL_P(arg) > (zend_long)INT32_MAX)) { 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 | 74 if (Z_LVAL_P(ele_value) > INT32_MAX || in internal_get_arr_ele()
|
/PHP-8.3/ext/intl/msgformat/ |
H A D | msgformat_helpers.cpp | 406 if (UNEXPECTED(num_index > (zend_ulong)INT32_MAX)) { in umsg_format_helper() 480 if (UNEXPECTED(Z_DVAL_P(elem) > (double)INT32_MAX || in umsg_format_helper() 489 if (UNEXPECTED(Z_LVAL_P(elem) > INT32_MAX || in umsg_format_helper()
|
/PHP-8.3/ext/exif/ |
H A D | exif.c | 3289 if (byte_count_signed < 0 || (byte_count_signed > INT32_MAX)) { in exif_process_IFD_TAG_impl()
|
/PHP-8.3/ext/date/ |
H A D | php_date.c | 4096 zend_long timestamp_begin = ZEND_LONG_MIN, timestamp_end = INT32_MAX; in PHP_FUNCTION()
|
Completed in 100 milliseconds