Searched refs:ZEND_LONG_INT_OVFL (Results 1 – 9 of 9) sorted by relevance
42 # define ZEND_LONG_INT_OVFL(zlong) UNEXPECTED((zlong) > (zend_long)INT_MAX) macro44 # 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
124 if (ZEND_LONG_INT_OVFL(offset_input) || ZEND_LONG_INT_OVFL(count_input)) { in PHP_METHOD()211 if (ZEND_LONG_INT_OVFL(offset_input)) { in dom_character_data_insert_data()276 …if (offset < 0 || ZEND_LONG_INT_OVFL(offset) || ZEND_LONG_INT_OVFL(count_input) || offset > length… in dom_character_data_delete_data()346 …if (offset < 0 || ZEND_LONG_INT_OVFL(offset) || ZEND_LONG_INT_OVFL(count_input) || offset > length… in dom_character_data_replace_data()
122 if (ZEND_LONG_INT_OVFL(offset) || (int)offset > length) { in PHP_METHOD()
179 if (index < 0 || ZEND_LONG_INT_OVFL(index)) { in PHP_METHOD()
2415 if (UNEXPECTED(lval < 0 || ZEND_LONG_INT_OVFL(lval))) { in dom_nodemap_read_dimension()
151 if (ZEND_LONG_INT_OVFL(long_parse_pos)) { in PHP_FUNCTION()197 if (ZEND_LONG_INT_OVFL(long_parse_pos)) { in PHP_METHOD()237 if (ZEND_LONG_INT_OVFL(long_parse_pos)) { in PHP_FUNCTION()
351 places = ZEND_LONG_INT_OVFL(precision) ? INT_MAX : (int)precision; in PHP_FUNCTION()1382 dec_int = ZEND_LONG_INT_OVFL(dec) ? INT_MAX : (int)dec; in PHP_FUNCTION()
731 if (ncolors <= 0 || ZEND_LONG_INT_OVFL(ncolors)) { in PHP_FUNCTION()
8150 if (ZEND_LONG_INT_OVFL(buffer_length)) {
Completed in 81 milliseconds