Home
last modified time | relevance | path

Searched refs:HT_MAX_SIZE (Results 1 – 6 of 6) sorted by relevance

/PHP-7.0/Zend/
H A Dzend_string.c108 if (CG(interned_strings).nTableSize < HT_MAX_SIZE) { /* Let's double the table size */ in zend_new_interned_string_int()
H A Dzend_types.h219 # define HT_MAX_SIZE 0x04000000 /* small enough to avoid overflow checks */ macro
227 # define HT_MAX_SIZE 0x80000000 macro
H A Dzend_hash.c105 } else if (UNEXPECTED(nSize >= HT_MAX_SIZE)) { in zend_hash_check_size()
191 if (ht->nTableSize >= HT_MAX_SIZE) { in zend_hash_packed_grow()
881 } else if (ht->nTableSize < HT_MAX_SIZE) { /* Let's double the table size */ in zend_hash_do_resize()
/PHP-7.0/ext/standard/
H A Dvar_unserializer.c496 if (elements >= HT_MAX_SIZE - zend_hash_num_elements(ht)) { in object_common2()
1312 if (elements < 0 || elements >= HT_MAX_SIZE) { in php_var_unserialize_internal()
1360 if (elements < 0 || elements >= HT_MAX_SIZE) { in php_var_unserialize_internal()
H A Dvar_unserializer.re500 if (elements >= HT_MAX_SIZE - zend_hash_num_elements(ht)) {
764 if (elements < 0 || elements >= HT_MAX_SIZE) {
787 if (elements < 0 || elements >= HT_MAX_SIZE) {
H A Darray.c2026 if (__calc_size >= (double)HT_MAX_SIZE) { \
2037 if (__calc_size >= HT_MAX_SIZE - 1) { \

Completed in 45 milliseconds