Searched refs:str (Results 1 – 12 of 12) sorted by relevance
/ext-ds/src/ |
H A D | common.c | 161 smart_str_append(buffer, str); in smart_str_appendz() 162 zend_string_free(str); in smart_str_appendz() 171 smart_str str = {0}; in ds_join_zval_buffer() local 188 smart_str_appendz(&str, pos); in ds_join_zval_buffer() 193 smart_str_appendz(&str, pos); in ds_join_zval_buffer() 201 smart_str_appendz(&str, pos); in ds_join_zval_buffer() 205 smart_str_0(&str); in ds_join_zval_buffer() 206 return str.s; in ds_join_zval_buffer() 244 zend_string *str; in ds_throw_exception() local 247 str = vstrpprintf(0, format, ap); in ds_throw_exception() [all …]
|
H A D | common.h | 32 #define STR_AND_LEN(str) str, sizeof(str) - 1 argument 273 char *str,
|
/ext-ds/src/php/ |
H A D | parameters.h | 24 char *str; \ 26 PARSE_2("s", &str, &len)
|
/ext-ds/src/ds/ |
H A D | ds_htable.c | 209 static inline uint32_t get_string_hash(zend_string *str) in get_string_hash() argument 211 return ZSTR_HASH(str); in get_string_hash() 760 smart_str str = {0}; in ds_htable_join_keys() local 775 smart_str_appendz(&str, &pos->key); in ds_htable_join_keys() 776 smart_str_appendl(&str, glue, len); in ds_htable_join_keys() 781 smart_str_appendz(&str, &end->key); in ds_htable_join_keys() 787 smart_str_appendz(&str, key); in ds_htable_join_keys() 792 smart_str_0(&str); in ds_htable_join_keys() 793 return str.s; in ds_htable_join_keys()
|
H A D | ds_deque.h | 74 void ds_deque_join(ds_deque_t *deque, char *str, size_t len, zval *return_value);
|
H A D | ds_vector.h | 91 void ds_vector_join(ds_vector_t *vector, char *str, size_t len, zval *return_value);
|
H A D | ds_set.c | 168 zend_string *str = ds_htable_join_keys(set->table, glue, len); in ds_set_join() local 169 ZVAL_STR(return_value, str); in ds_set_join()
|
H A D | ds_vector.c | 241 void ds_vector_join(ds_vector_t *vector, char *str, size_t len, zval *return_value) in ds_vector_join() argument 244 s = ds_join_zval_buffer(vector->buffer, DS_VECTOR_SIZE(vector), str, len); in ds_vector_join()
|
H A D | ds_deque.c | 490 void ds_deque_join(ds_deque_t *deque, char *str, size_t len, zval *return_value) in ds_deque_join() argument 496 ds_join_zval_buffer(deque->buffer, deque->size, str, len) in ds_deque_join()
|
/ext-ds/src/php/classes/ |
H A D | php_deque_ce.c | 31 ds_deque_join(THIS_DS_DEQUE(), str, len, return_value); in METHOD()
|
H A D | php_vector_ce.c | 113 ds_vector_join(THIS_DS_VECTOR(), str, len, return_value); in METHOD()
|
H A D | php_set_ce.c | 31 ds_set_join(THIS_DS_SET(), str, len, return_value); in METHOD()
|
Completed in 19 milliseconds