Home
last modified time | relevance | path

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

/PHP-5.5/Zend/
H A Dzend_variables.c130 HashTable *tmp_ht = NULL; in _zval_copy_ctor_func() local
136 ALLOC_HASHTABLE_REL(tmp_ht); in _zval_copy_ctor_func()
137 zend_hash_init(tmp_ht, zend_hash_num_elements(original_ht), NULL, ZVAL_PTR_DTOR, 0); in _zval_copy_ctor_func()
138 zvalue->value.ht = tmp_ht; in _zval_copy_ctor_func()
139 …zend_hash_copy(tmp_ht, original_ht, (copy_ctor_func_t) zval_add_ref, (void *) &tmp, sizeof(zval *)… in _zval_copy_ctor_func()
140 tmp_ht->nNextFreeElement = original_ht->nNextFreeElement; in _zval_copy_ctor_func()
H A Dzend_execute_API.c569 HashTable *tmp_ht = NULL; in zval_update_constant_ex() local
571 ALLOC_HASHTABLE(tmp_ht); in zval_update_constant_ex()
572 zend_hash_init(tmp_ht, zend_hash_num_elements(Z_ARRVAL_P(p)), NULL, ZVAL_PTR_DTOR, 0); in zval_update_constant_ex()
573 …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()
574 Z_ARRVAL_P(p) = tmp_ht; in zval_update_constant_ex()
/PHP-5.5/ext/json/
H A Djson.c267 HashTable *tmp_ht; in json_encode_array() local
276 tmp_ht = HASH_OF(*data); in json_encode_array()
277 if (tmp_ht) { in json_encode_array()
278 tmp_ht->nApplyCount++; in json_encode_array()
295 if (tmp_ht) { in json_encode_array()
296 tmp_ht->nApplyCount--; in json_encode_array()
337 if (tmp_ht) { in json_encode_array()
338 tmp_ht->nApplyCount--; in json_encode_array()

Completed in 18 milliseconds