Searched refs:c (Results 1 – 9 of 9) sorted by relevance
/ext-ds/ |
H A D | config.w32 | 5 var DS_EXT_API="php_ds.c"; 24 "common.c" 29 "ds_deque.c", 30 "ds_vector.c", 32 "ds_set.c", 33 "ds_map.c", 34 "ds_stack.c", 36 "ds_queue.c", 43 "php_map.c", 44 "php_pair.c", [all …]
|
H A D | config.m4 | 7 src/common.c \ 10 src/ds/ds_vector.c \ 11 src/ds/ds_deque.c \ 12 src/ds/ds_htable.c \ 13 src/ds/ds_set.c \ 14 src/ds/ds_map.c \ 15 src/ds/ds_stack.c \ 16 src/ds/ds_priority_queue.c \ 17 src/ds/ds_queue.c \ 19 src/php/objects/php_vector.c \ [all …]
|
H A D | .editorconfig | 9 [*.{php, c, h}]
|
H A D | LICENSE | 2 Copyright (c) 2016 Rudi Theunissen
|
H A D | appveyor.yml | 9 clone_folder: c:\projects\php-ds
|
/ext-ds/src/php/ |
H A D | arginfo.h | 19 #define ARGINFO_CALLABLE_OPTIONAL_ZVAL(name, c, z) \ argument 21 ZEND_ARG_TYPE_INFO(0, c, IS_CALLABLE, 0) \ 30 #define ARGINFO_OPTIONAL_CALLABLE(name, c) \ argument 32 ZEND_ARG_TYPE_INFO(0, c, IS_CALLABLE, 1) \ 35 #define ARGINFO_CALLABLE(name, c) \ argument 37 ZEND_ARG_TYPE_INFO(0, c, IS_CALLABLE, 0) \ 205 #define ARGINFO_CALLABLE_RETURN_DS(name, c, col) \ argument 207 ZEND_ARG_TYPE_INFO(0, c, IS_CALLABLE, 0) \ 225 #define ARGINFO_OPTIONAL_CALLABLE_RETURN_DS(name, c, col) \ argument 227 ZEND_ARG_TYPE_INFO(0, c, IS_CALLABLE, 1) \
|
H A D | parameters.h | 10 #define PARSE_3(spec, a, b, c) if (zend_parse_parameters(ZEND_NUM_ARGS(), spec, a, b, c) == FAILUR… argument
|
/ext-ds/src/ds/ |
H A D | ds_vector.c | 96 const zend_long c = vector->capacity; in ds_vector_auto_truncate() local 99 if (n <= c / 4 && c / 2 >= DS_VECTOR_MIN_CAPACITY) { in ds_vector_auto_truncate() 100 ds_vector_reallocate(vector, c / 2); in ds_vector_auto_truncate() 389 zval *a, *b, *c; in ds_vector_rotate() local 405 c = a + n; // End of buffer in ds_vector_rotate() 409 ds_reverse_zval_range(b, c); in ds_vector_rotate() 410 ds_reverse_zval_range(a, c); in ds_vector_rotate()
|
H A D | ds_htable.c | 1136 ds_htable_bucket_t c = *a; in ds_htable_reverse() local 1138 *b = c; in ds_htable_reverse()
|
Completed in 22 milliseconds