Searched refs:tmp_ht (Results 1 - 3 of 3) sorted by relevance
| /PHP_TRUNK/Zend/ |
| H A D | zend_variables.c | 130 HashTable *tmp_ht = NULL; local 136 ALLOC_HASHTABLE_REL(tmp_ht); 137 zend_hash_init(tmp_ht, zend_hash_num_elements(original_ht), NULL, ZVAL_PTR_DTOR, 0); 138 zend_hash_copy(tmp_ht, original_ht, (copy_ctor_func_t) zval_add_ref, (void *) &tmp, sizeof(zval *)); 139 zvalue->value.ht = tmp_ht;
|
| H A D | zend_execute_API.c | 576 HashTable *tmp_ht = NULL; local 578 ALLOC_HASHTABLE(tmp_ht); 579 zend_hash_init(tmp_ht, zend_hash_num_elements(Z_ARRVAL_P(p)), NULL, ZVAL_PTR_DTOR, 0); 580 zend_hash_copy(tmp_ht, Z_ARRVAL_P(p), (copy_ctor_func_t) zval_deep_copy, (void *) &tmp, sizeof(zval *)); 581 Z_ARRVAL_P(p) = tmp_ht;
|
| /PHP_TRUNK/ext/json/ |
| H A D | json.c | 268 HashTable *tmp_ht; local 278 tmp_ht = HASH_OF(*data); 279 if (tmp_ht) { 280 tmp_ht->nApplyCount++; 297 if (tmp_ht) { 298 tmp_ht->nApplyCount--; 339 if (tmp_ht) { 340 tmp_ht->nApplyCount--;
|
Completed in 6 milliseconds