Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dstreamsfuncs.c650 HashTable *new_hash; in stream_array_from_fd_set() local
656 ALLOC_HASHTABLE(new_hash); in stream_array_from_fd_set()
713 zend_hash_internal_pointer_reset(new_hash); in stream_array_from_fd_set()
714 Z_ARRVAL_P(stream_array) = new_hash; in stream_array_from_fd_set()
723 HashTable *new_hash; in stream_array_emulate_read_fd_set() local
729 ALLOC_HASHTABLE(new_hash); in stream_array_emulate_read_fd_set()
747 zend_hash_next_index_insert(new_hash, (void *)elem, sizeof(zval *), (void **)&dest_elem); in stream_array_emulate_read_fd_set()
761 zend_hash_internal_pointer_reset(new_hash); in stream_array_emulate_read_fd_set()
762 Z_ARRVAL_P(stream_array) = new_hash; in stream_array_emulate_read_fd_set()
764 zend_hash_destroy(new_hash); in stream_array_emulate_read_fd_set()
[all …]
H A Darray.c2018 HashTable *new_hash; /* New hashtable for the stack */ in PHP_FUNCTION() local
2028 new_hash = php_splice(Z_ARRVAL_P(stack), 0, 0, &args[0], argc, NULL); in PHP_FUNCTION()
2033 *Z_ARRVAL_P(stack) = *new_hash; in PHP_FUNCTION()
2034 FREE_HASHTABLE(new_hash); in PHP_FUNCTION()
2050 HashTable *new_hash = NULL, /* Output array's hash */ in PHP_FUNCTION() local
2114 *Z_ARRVAL_P(array) = *new_hash; in PHP_FUNCTION()
2115 FREE_HASHTABLE(new_hash); in PHP_FUNCTION()
2681 HashTable *new_hash;/* Return value from splice */ in PHP_FUNCTION() local
2728 new_hash = php_splice(Z_ARRVAL_P(return_value), 0, 0, pads, num_pads, NULL); in PHP_FUNCTION()
2736 *Z_ARRVAL_P(return_value) = *new_hash; in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/mysqli/
H A Dmysqli_nonapi.c682 HashTable *new_hash; local
686 ALLOC_HASHTABLE(new_hash);
687 zend_hash_init(new_hash, zend_hash_num_elements(Z_ARRVAL_P(out_array)), NULL, ZVAL_PTR_DTOR, 0);
707 zend_hash_next_index_insert(new_hash, (void *)elem, sizeof(zval *), (void **)&dest_elem);
721 zend_hash_internal_pointer_reset(new_hash);
722 Z_ARRVAL_P(out_array) = new_hash;
733 HashTable *new_hash; local
737 ALLOC_HASHTABLE(new_hash);
748 zend_hash_next_index_insert(new_hash, (void *)elem, sizeof(zval *), (void **)&dest_elem);
762 zend_hash_internal_pointer_reset(new_hash);
[all …]
/PHP-5.5/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 41 milliseconds