Searched refs:x (Results 1 – 7 of 7) sorted by relevance
/ext-ds/src/ds/ |
H A D | ds_vector.h | 22 zval *x = v->buffer; \ 23 zval *y = x + v->size; \ 24 for (; x < y; ++x) { \ 25 z = x; 33 zval *x = y + v->size - 1; \ 34 for (; x >= y; --x) { \ 35 z = x;
|
H A D | ds_priority_queue.c | 9 #define LEFT(x) (((x) * 2) + 1) argument 10 #define RIGHT(x) (((x) * 2) + 2) argument 11 #define PARENT(x) (((x) - 1) / 2) argument
|
H A D | ds_htable.c | 532 ds_htable_bucket_t *x = ((ds_htable_bucket_t*)a); in user_compare_by_value() local 535 ZVAL_COPY_VALUE(¶ms[0], &x->value); in user_compare_by_value() 582 ds_htable_bucket_t *x = (ds_htable_bucket_t*) a; in compare_by_value() local 585 if (compare_function(&retval, &x->value, &y->value) == SUCCESS) { in compare_by_value()
|
/ext-ds/src/ |
H A D | common.c | 57 zval *x = (zval*) a; in ds_zval_user_compare_func() local 60 ZVAL_COPY_VALUE(¶ms[0], x); in ds_zval_user_compare_func() 81 zval *x = (zval*) a; in ds_zval_compare_func() local 84 if (compare_function(&retval, x, y) == SUCCESS) { in ds_zval_compare_func() 236 void ds_reverse_zval_range(zval *x, zval *y) in ds_reverse_zval_range() argument 238 for (; x < --y; ++x) SWAP_ZVAL(*x, *y); in ds_reverse_zval_range()
|
H A D | common.h | 315 void ds_reverse_zval_range(zval *x, zval *y);
|
/ext-ds/ |
H A D | CONTRIBUTING.md | 9 …atform details** - Specify your platform and your PHP version, eg. "PHP 7.0.2 on Ubuntu 14.04 64x".
|
H A D | appveyor.yml | 48 7z x -y php-sdk-binary-tools-%PHP_SDK_BINARY_TOOLS_VER%.zip -oC:\projects
|
Completed in 12 milliseconds