Home
last modified time | relevance | path

Searched refs:tmp_ht (Results 1 – 3 of 3) sorted by relevance

/PHP-5.3/Zend/
H A Dzend_variables.c128 HashTable *tmp_ht = NULL; in _zval_copy_ctor_func() local
134 ALLOC_HASHTABLE_REL(tmp_ht); in _zval_copy_ctor_func()
135 zend_hash_init(tmp_ht, zend_hash_num_elements(original_ht), NULL, ZVAL_PTR_DTOR, 0); in _zval_copy_ctor_func()
136 …zend_hash_copy(tmp_ht, original_ht, (copy_ctor_func_t) zval_add_ref, (void *) &tmp, sizeof(zval *)… in _zval_copy_ctor_func()
137 zvalue->value.ht = tmp_ht; in _zval_copy_ctor_func()
H A Dzend_execute_API.c604 HashTable *tmp_ht = NULL; in zval_update_constant_ex() local
606 ALLOC_HASHTABLE(tmp_ht); in zval_update_constant_ex()
607 zend_hash_init(tmp_ht, zend_hash_num_elements(Z_ARRVAL_P(p)), NULL, ZVAL_PTR_DTOR, 0); in zval_update_constant_ex()
608 …zend_hash_copy(tmp_ht, Z_ARRVAL_P(p), (copy_ctor_func_t) zval_deep_copy, (void *) &tmp, sizeof(zva… in zval_update_constant_ex()
609 Z_ARRVAL_P(p) = tmp_ht; in zval_update_constant_ex()
/PHP-5.3/ext/json/
H A Djson.c203 HashTable *tmp_ht; in json_encode_array() local
213 tmp_ht = HASH_OF(*data); in json_encode_array()
214 if (tmp_ht) { in json_encode_array()
215 tmp_ht->nApplyCount++; in json_encode_array()
230 if (tmp_ht) { in json_encode_array()
231 tmp_ht->nApplyCount--; in json_encode_array()
262 if (tmp_ht) { in json_encode_array()
263 tmp_ht->nApplyCount--; in json_encode_array()

Completed in 15 milliseconds