Home
last modified time | relevance | path

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

/PHP-5.6/ext/standard/
H A Dstreamsfuncs.c647 HashTable *new_hash; in stream_array_from_fd_set() local
653 ALLOC_HASHTABLE(new_hash); in stream_array_from_fd_set()
704 zend_hash_internal_pointer_reset(new_hash); in stream_array_from_fd_set()
705 Z_ARRVAL_P(stream_array) = new_hash; in stream_array_from_fd_set()
714 HashTable *new_hash; in stream_array_emulate_read_fd_set() local
720 ALLOC_HASHTABLE(new_hash); in stream_array_emulate_read_fd_set()
738 zend_hash_next_index_insert(new_hash, (void *)elem, sizeof(zval *), (void **)&dest_elem); in stream_array_emulate_read_fd_set()
752 zend_hash_internal_pointer_reset(new_hash); in stream_array_emulate_read_fd_set()
753 Z_ARRVAL_P(stream_array) = new_hash; in stream_array_emulate_read_fd_set()
755 zend_hash_destroy(new_hash); in stream_array_emulate_read_fd_set()
[all …]
/PHP-5.6/ext/mysqli/
H A Dmysqli_nonapi.c697 HashTable *new_hash; local
701 ALLOC_HASHTABLE(new_hash);
702 zend_hash_init(new_hash, zend_hash_num_elements(Z_ARRVAL_P(out_array)), NULL, ZVAL_PTR_DTOR, 0);
722 zend_hash_next_index_insert(new_hash, (void *)elem, sizeof(zval *), (void **)&dest_elem);
736 zend_hash_internal_pointer_reset(new_hash);
737 Z_ARRVAL_P(out_array) = new_hash;
748 HashTable *new_hash; local
752 ALLOC_HASHTABLE(new_hash);
763 zend_hash_next_index_insert(new_hash, (void *)elem, sizeof(zval *), (void **)&dest_elem);
777 zend_hash_internal_pointer_reset(new_hash);
[all …]
/PHP-5.6/ext/sockets/
H A Dsockets.c797 HashTable *new_hash; local
805 ALLOC_HASHTABLE(new_hash);
806 zend_hash_init(new_hash, zend_hash_num_elements(Z_ARRVAL_P(sock_array)), NULL, ZVAL_PTR_DTOR, 0);
818 zend_hash_add(new_hash, key, key_len, (void *)element, sizeof(zval *), (void **)&dest_element);
821 …zend_hash_index_update(new_hash, num_key, (void *)element, sizeof(zval *), (void **)&dest_element);
833 zend_hash_internal_pointer_reset(new_hash);
834 Z_ARRVAL_P(sock_array) = new_hash;

Completed in 26 milliseconds