Home
last modified time | relevance | path

Searched refs:c (Results 1 – 9 of 9) sorted by relevance

/ext-ds/
H A Dconfig.w325 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 Dconfig.m47 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.editorconfig9 [*.{php, c, h}]
H A DLICENSE2 Copyright (c) 2016 Rudi Theunissen
H A Dappveyor.yml9 clone_folder: c:\projects\php-ds
/ext-ds/src/php/
H A Darginfo.h19 #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 Dparameters.h10 #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 Dds_vector.c96 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 Dds_htable.c1136 ds_htable_bucket_t c = *a; in ds_htable_reverse() local
1138 *b = c; in ds_htable_reverse()

Completed in 18 milliseconds