ht_iterators_count  181 Zend/zend_execute_API.c 	EG(ht_iterators_count) = sizeof(EG(ht_iterators_slots)) / sizeof(HashTableIterator);
ht_iterators_count  216 Zend/zend_globals.h 	uint32_t           ht_iterators_count;     /* number of allocatd slots */
ht_iterators_count  334 Zend/zend_hash.c 	HashTableIterator *end  = iter + EG(ht_iterators_count);
ht_iterators_count  353 Zend/zend_hash.c 		EG(ht_iterators) = emalloc(sizeof(HashTableIterator) * (EG(ht_iterators_count) + 8));
ht_iterators_count  354 Zend/zend_hash.c 		memcpy(EG(ht_iterators), EG(ht_iterators_slots), sizeof(HashTableIterator) * EG(ht_iterators_count));
ht_iterators_count  356 Zend/zend_hash.c 		EG(ht_iterators) = erealloc(EG(ht_iterators), sizeof(HashTableIterator) * (EG(ht_iterators_count) + 8));
ht_iterators_count  358 Zend/zend_hash.c 	iter = EG(ht_iterators) + EG(ht_iterators_count);
ht_iterators_count  359 Zend/zend_hash.c 	EG(ht_iterators_count) += 8;