/ext-ds/src/php/objects/ |
H A D | php_map.c | 53 zval *buffer = ds_allocate_zval_buffer(DS_MAP_SIZE(map)); in ds_map_pairs() local 67 int php_ds_map_serialize(zval *object, unsigned char **buffer, size_t *length, zend_serialize_data … in php_ds_map_serialize() 72 int php_ds_map_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buffer, size_t … in php_ds_map_unserialize()
|
H A D | php_queue.c | 31 int php_ds_queue_serialize(zval *object, unsigned char **buffer, size_t *length, zend_serialize_dat… in php_ds_queue_serialize() 60 int php_ds_queue_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buffer, size_… in php_ds_queue_unserialize()
|
H A D | php_deque.c | 30 int php_ds_deque_serialize(zval *object, unsigned char **buffer, size_t *length, zend_serialize_dat… in php_ds_deque_serialize() 59 int php_ds_deque_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buffer, size_… in php_ds_deque_unserialize()
|
H A D | php_stack.c | 30 int php_ds_stack_serialize(zval *object, unsigned char **buffer, size_t *length, zend_serialize_dat… in php_ds_stack_serialize() 59 int php_ds_stack_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buffer, size_… in php_ds_stack_unserialize()
|
H A D | php_vector.c | 31 int php_ds_vector_serialize(zval *object, unsigned char **buffer, size_t *length, zend_serialize_da… in php_ds_vector_serialize() 59 int php_ds_vector_unserialize(zval *obj, zend_class_entry *ce, const unsigned char *buffer, size_t … in php_ds_vector_unserialize()
|
H A D | php_set.c | 30 int php_ds_set_serialize(zval *object, unsigned char **buffer, size_t *length, zend_serialize_data … in php_ds_set_serialize() 59 int php_ds_set_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buffer, size_t … in php_ds_set_unserialize()
|
H A D | php_priority_queue.c | 36 int php_ds_priority_queue_serialize(zval *object, unsigned char **buffer, size_t *length, zend_seri… in php_ds_priority_queue_serialize() 69 …priority_queue_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buffer, size_t… in php_ds_priority_queue_unserialize()
|
H A D | php_pair.c | 102 int php_ds_pair_serialize(zval *object, unsigned char **buffer, size_t *length, zend_serialize_data… in php_ds_pair_serialize() 126 int php_ds_pair_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buffer, size_t… in php_ds_pair_unserialize()
|
/ext-ds/src/ |
H A D | common.c | 24 zval *buffer, in ds_reallocate_zval_buffer() 91 void ds_sort_zval_buffer(zval *buffer, zend_long size) in ds_sort_zval_buffer() 96 void ds_user_sort_zval_buffer(zval *buffer, zend_long size) in ds_user_sort_zval_buffer() 149 void smart_str_appendz(smart_str *buffer, zval *value) in smart_str_appendz() 166 zval *buffer, in ds_join_zval_buffer()
|
/ext-ds/src/php/handlers/ |
H A D | php_common_handlers.c | 15 smart_str buffer = {0}; local
|
/ext-ds/src/ds/ |
H A D | ds_vector.h | 7 zval *buffer; member
|
H A D | ds_deque.h | 27 zval *buffer; member
|
H A D | ds_vector.c | 57 ds_vector_t *ds_vector_from_buffer(zval *buffer, zend_long capacity, zend_long size) in ds_vector_from_buffer() 519 zval *buffer = ds_allocate_zval_buffer(vector->capacity); in ds_vector_reversed() local 554 zval *buffer = ds_allocate_zval_buffer(vector->capacity); in ds_vector_map() local 589 zval *buffer = ds_allocate_zval_buffer(vector->size); in ds_vector_filter() local 611 zval *buffer = ds_allocate_zval_buffer(vector->size); in ds_vector_filter_callback() local
|
H A D | ds_deque.c | 69 static ds_deque_t *ds_deque_from_buffer(zval *buffer, zend_long capacity, zend_long size) in ds_deque_from_buffer() 85 zval *buffer = ds_allocate_zval_buffer(deque->capacity); in ds_deque_clone() local 132 zval *buffer = ds_allocate_zval_buffer(deque->capacity); in ds_deque_reset_head() local 701 zval *buffer = ds_allocate_zval_buffer(deque->capacity); in ds_deque_map() local
|
H A D | ds_htable.c | 223 smart_str buffer = {0}; in get_array_hash() local 716 zval *buffer = ds_allocate_zval_buffer(table->size); in ds_htable_values() local 1182 int ds_htable_serialize(ds_htable_t *table, unsigned char **buffer, size_t *length, zend_serialize_… in ds_htable_serialize() 1211 int ds_htable_unserialize(ds_htable_t *table, const unsigned char *buffer, size_t length, zend_unse… in ds_htable_unserialize()
|
H A D | ds_priority_queue.c | 246 ds_priority_queue_node_t *buffer = allocate_nodes(queue->size); in ds_priority_queue_create_sorted_buffer() local
|