Home
last modified time | relevance | path

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

/PHP-8.1/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.1/ext/dom/
H A Dcharacterdata.c138 …if (offset < 0 || count < 0 || ZEND_LONG_INT_OVFL(offset) || ZEND_LONG_INT_OVFL(count) || offset >… in PHP_METHOD()
210 if (offset < 0 || ZEND_LONG_INT_OVFL(offset) || offset > length) { in PHP_METHOD()
257 …if (offset < 0 || count < 0 || ZEND_LONG_INT_OVFL(offset) || ZEND_LONG_INT_OVFL(count) || offset >… in PHP_METHOD()
314 …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.c1732 if (UNEXPECTED(lval < 0 || ZEND_LONG_INT_OVFL(lval))) { in dom_nodemap_read_dimension()
/PHP-8.1/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.1/ext/standard/
H A Dmath.c287 places = ZEND_LONG_INT_OVFL(precision) ? INT_MAX : (int)precision; in PHP_FUNCTION()
1157 dec_int = ZEND_LONG_INT_OVFL(dec) ? INT_MAX : (int)dec; in PHP_FUNCTION()
/PHP-8.1/ext/gd/
H A Dgd.c883 if (ncolors <= 0 || ZEND_LONG_INT_OVFL(ncolors)) { in PHP_FUNCTION()
/PHP-8.1/ext/openssl/
H A Dopenssl.c7773 || ZEND_LONG_INT_OVFL(buffer_length) in php_openssl_random_pseudo_bytes()

Completed in 72 milliseconds