Home
last modified time | relevance | path

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

/PHP-8.3/Zend/
H A Dzend_range_check.h42 # define ZEND_LONG_INT_OVFL(zlong) UNEXPECTED((zlong) > (zend_long)INT_MAX) macro
44 # define ZEND_LONG_EXCEEDS_INT(zlong) UNEXPECTED(ZEND_LONG_INT_OVFL(zlong) || ZEND_LONG_INT_UDFL(zl…
47 # define ZEND_LONG_INT_OVFL(zl) (0) macro
/PHP-8.3/ext/dom/
H A Dcharacterdata.c125 …if (offset < 0 || count < 0 || ZEND_LONG_INT_OVFL(offset) || ZEND_LONG_INT_OVFL(count) || offset >… in PHP_METHOD()
195 if (offset < 0 || ZEND_LONG_INT_OVFL(offset) || offset > length) { in PHP_METHOD()
240 …if (offset < 0 || count < 0 || ZEND_LONG_INT_OVFL(offset) || ZEND_LONG_INT_OVFL(count) || offset >… in PHP_METHOD()
295 …if (offset < 0 || count < 0 || ZEND_LONG_INT_OVFL(offset) || ZEND_LONG_INT_OVFL(count) || offset >… in PHP_METHOD()
H A Dtext.c140 if (ZEND_LONG_INT_OVFL(offset) || (int)offset > length) { in PHP_METHOD()
H A Dnamednodemap.c182 if (index < 0 || ZEND_LONG_INT_OVFL(index)) { in PHP_METHOD()
H A Dphp_dom.c1819 if (UNEXPECTED(lval < 0 || ZEND_LONG_INT_OVFL(lval))) { in dom_nodemap_read_dimension()
/PHP-8.3/ext/intl/dateformat/
H A Ddateformat_parse.c142 if (ZEND_LONG_INT_OVFL(long_parse_pos)) { in PHP_FUNCTION()
183 if (ZEND_LONG_INT_OVFL(long_parse_pos)) { in PHP_FUNCTION()
/PHP-8.3/ext/standard/
H A Dmath.c286 places = ZEND_LONG_INT_OVFL(precision) ? INT_MAX : (int)precision; in PHP_FUNCTION()
1280 dec_int = ZEND_LONG_INT_OVFL(dec) ? INT_MAX : (int)dec; in PHP_FUNCTION()
/PHP-8.3/ext/gd/
H A Dgd.c733 if (ncolors <= 0 || ZEND_LONG_INT_OVFL(ncolors)) { in PHP_FUNCTION()
/PHP-8.3/ext/openssl/
H A Dopenssl.c7910 if (ZEND_LONG_INT_OVFL(buffer_length)) { in php_openssl_random_pseudo_bytes()

Completed in 85 milliseconds