Home
last modified time | relevance | path

Searched refs:new_ht (Results 1 – 4 of 4) sorted by relevance

/PHP-7.3/Zend/
H A Dzend_hash.c2669 HashTable *new_ht = zend_new_array(zend_hash_num_elements(ht)); in zend_symtable_to_proptable() local
2687 zend_hash_update(new_ht, str_key, zv); in zend_symtable_to_proptable()
2690 return new_ht; in zend_symtable_to_proptable()
2727 HashTable *new_ht = zend_new_array(zend_hash_num_elements(ht)); in zend_proptable_to_symtable() local
2743 zend_hash_index_update(new_ht, num_key, zv); in zend_proptable_to_symtable()
2745 zend_hash_update(new_ht, str_key, zv); in zend_proptable_to_symtable()
2749 return new_ht; in zend_proptable_to_symtable()
/PHP-7.3/sapi/phpdbg/
H A Dphpdbg_bp.c363 HashTable new_ht; in phpdbg_resolve_pending_file_break_ex() local
364 zend_hash_init(&new_ht, 8, NULL, phpdbg_file_breaks_dtor, 0); in phpdbg_resolve_pending_file_break_ex()
365 …master = zend_hash_str_add_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE], file, filelen, &new_ht, sizeof(Ha… in phpdbg_resolve_pending_file_break_ex()
/PHP-7.3/ext/spl/
H A Dspl_array.c1505 HashTable *new_ht = Z_ARRVAL_P(Z_REFVAL(params[0])); in spl_array_method() local
1506 if (aht != new_ht) { in spl_array_method()
1507 spl_array_replace_hash_table(intern, new_ht); in spl_array_method()
/PHP-7.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c31955 struct _ht *new_ht; /* The new hash table */
31974 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
31977 if( new_ht==0 ) return 0;
31979 pH->ht = new_ht;
31980 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
31981 memset(new_ht, 0, new_size*sizeof(struct _ht));
31985 insertElement(pH, &new_ht[h], elem);
168308 struct _fts3ht *new_ht; /* The new hash table */
168314 if( new_ht==0 ) return 1;
168316 pH->ht = new_ht;
[all …]

Completed in 658 milliseconds