Home
last modified time | relevance | path

Searched refs:b (Results 1 – 8 of 8) sorted by relevance

/ext-ds/src/php/
H A Dparameters.h9 #define PARSE_2(spec, a, b) if (zend_parse_parameters(ZEND_NUM_ARGS(), spec, a, b) == FAILURE) … argument
10 #define PARSE_3(spec, a, b, c) if (zend_parse_parameters(ZEND_NUM_ARGS(), spec, a, b, c) == FAILUR… argument
37 #define PARSE_LONG_AND_LONG(a, b) \ argument
39 zend_long b = 0; \
40 PARSE_2("ll", &a, &b)
/ext-ds/src/ds/
H A Dds_htable.h80 #define DS_HTABLE_BUCKET_DELETE(b) \ argument
81 DTOR_AND_UNDEF(&(b)->value); \
82 DTOR_AND_UNDEF(&(b)->key); \
83 DS_HTABLE_BUCKET_NEXT((b)) = DS_HTABLE_INVALID_INDEX
85 #define DS_HTABLE_FOREACH_BUCKET(h, b) \ argument
92 b = _x;
94 #define DS_HTABLE_FOREACH_BUCKET_REVERSED(h, b) \ argument
101 b = _y;
H A Dds_priority_queue.c24 ds_priority_queue_node_t *b in ds_priority_queue_node_compare() argument
28 if (compare_function(&retval, &a->priority, &b->priority) == SUCCESS) { in ds_priority_queue_node_compare()
33 return (STAMP(a) < STAMP(b) ? 1 : -1); in ds_priority_queue_node_compare()
236 static int priority_sort(const void *a, const void *b) in priority_sort() argument
239 (ds_priority_queue_node_t *) b, in priority_sort()
H A Dds_htable.c179 static inline bool user_hashable_equals(zval *a, zval *b) in user_hashable_equals() argument
181 if (Z_OBJCE_P(a) != Z_OBJCE_P(b)) { in user_hashable_equals()
533 ds_htable_bucket_t *y = ((ds_htable_bucket_t*)b); in user_compare_by_value()
549 static int user_compare_by_key(const void *a, const void *b) in user_compare_by_key() argument
555 ZVAL_COPY_VALUE(&params[1], (zval*) b); in user_compare_by_key()
568 static int compare_by_key(const void *a, const void *b) in compare_by_key() argument
579 static int compare_by_value(const void *a, const void *b) in compare_by_value() argument
583 ds_htable_bucket_t *y = (ds_htable_bucket_t*) b; in compare_by_value()
1135 for (; a < b; ++a, --b) { in ds_htable_reverse()
1137 *a = *b; in ds_htable_reverse()
[all …]
H A Dds_vector.c389 zval *a, *b, *c; in ds_vector_rotate() local
404 b = a + r; // Pivot in ds_vector_rotate()
408 ds_reverse_zval_range(a, b); in ds_vector_rotate()
409 ds_reverse_zval_range(b, c); in ds_vector_rotate()
/ext-ds/src/
H A Dcommon.c52 static int ds_zval_user_compare_func(const void *a, const void *b) in ds_zval_user_compare_func() argument
58 zval *y = (zval*) b; in ds_zval_user_compare_func()
77 static int ds_zval_compare_func(const void *a, const void *b) in ds_zval_compare_func() argument
82 zval *y = (zval*) b; in ds_zval_compare_func()
H A Dcommon.h77 #define SWAP_ZVAL(a, b) \ argument
80 a = b; \
81 b = _t; \
/ext-ds/
H A Dappveyor.yml54 git clone https://github.com/php/php-src C:\projects\php-src -b PHP-%PHP_VER% --depth=1
60 phpsdk_deps -u -t %VC_VER% -b %PHP_VER% -a %ARCH% -f -d C:\projects\php-src\deps

Completed in 20 milliseconds