ht_iterators      183 Zend/zend_execute_API.c 	EG(ht_iterators) = EG(ht_iterators_slots);
ht_iterators      184 Zend/zend_execute_API.c 	memset(EG(ht_iterators), 0, sizeof(EG(ht_iterators_slots)));
ht_iterators      407 Zend/zend_execute_API.c 	if (EG(ht_iterators) != EG(ht_iterators_slots)) {
ht_iterators      408 Zend/zend_execute_API.c 		efree(EG(ht_iterators));
ht_iterators      218 Zend/zend_globals.h 	HashTableIterator *ht_iterators;
ht_iterators      333 Zend/zend_hash.c 	HashTableIterator *iter = EG(ht_iterators);
ht_iterators      344 Zend/zend_hash.c 			idx = iter - EG(ht_iterators);
ht_iterators      352 Zend/zend_hash.c 	if (EG(ht_iterators) == EG(ht_iterators_slots)) {
ht_iterators      353 Zend/zend_hash.c 		EG(ht_iterators) = emalloc(sizeof(HashTableIterator) * (EG(ht_iterators_count) + 8));
ht_iterators      354 Zend/zend_hash.c 		memcpy(EG(ht_iterators), EG(ht_iterators_slots), sizeof(HashTableIterator) * EG(ht_iterators_count));
ht_iterators      356 Zend/zend_hash.c 		EG(ht_iterators) = erealloc(EG(ht_iterators), sizeof(HashTableIterator) * (EG(ht_iterators_count) + 8));
ht_iterators      358 Zend/zend_hash.c 	iter = EG(ht_iterators) + EG(ht_iterators_count);
ht_iterators      363 Zend/zend_hash.c 	idx = iter - EG(ht_iterators);
ht_iterators      370 Zend/zend_hash.c 	HashTableIterator *iter = EG(ht_iterators) + idx;
ht_iterators      392 Zend/zend_hash.c 	HashTableIterator *iter = EG(ht_iterators) + idx;
ht_iterators      415 Zend/zend_hash.c 	HashTableIterator *iter = EG(ht_iterators) + idx;
ht_iterators      426 Zend/zend_hash.c 		while (idx > 0 && EG(ht_iterators)[idx - 1].ht == NULL) {
ht_iterators      435 Zend/zend_hash.c 	HashTableIterator *iter = EG(ht_iterators);
ht_iterators      455 Zend/zend_hash.c 	HashTableIterator *iter = EG(ht_iterators);
ht_iterators      472 Zend/zend_hash.c 	HashTableIterator *iter = EG(ht_iterators);
ht_iterators     6119 Zend/zend_vm_def.h 			EG(ht_iterators)[Z_FE_ITER_P(array)].pos = pos;
ht_iterators     6245 Zend/zend_vm_def.h 		EG(ht_iterators)[Z_FE_ITER_P(EX_VAR(opline->op1.var))].pos = pos;
ht_iterators     6311 Zend/zend_vm_def.h 			EG(ht_iterators)[Z_FE_ITER_P(EX_VAR(opline->op1.var))].pos = pos;
ht_iterators     15937 Zend/zend_vm_execute.h 			EG(ht_iterators)[Z_FE_ITER_P(array)].pos = pos;
ht_iterators     16063 Zend/zend_vm_execute.h 		EG(ht_iterators)[Z_FE_ITER_P(EX_VAR(opline->op1.var))].pos = pos;
ht_iterators     16129 Zend/zend_vm_execute.h 			EG(ht_iterators)[Z_FE_ITER_P(EX_VAR(opline->op1.var))].pos = pos;
ht_iterators      125 ext/spl/spl_array.c 	zend_hash_internal_pointer_reset_ex(ht, &EG(ht_iterators)[intern->ht_iter].pos);
ht_iterators      135 ext/spl/spl_array.c 	return &EG(ht_iterators)[intern->ht_iter].pos;