Searched refs:y (Results 1 – 7 of 7) sorted by relevance
/libuv/test/ |
H A D | test-strtok.c | 58 #define ASSERT_STRCMP(x, y) \ argument 59 ASSERT_NE((x != NULL && y != NULL && strcmp(x, y) == 0) || (x == y && x == NULL), 0)
|
/libuv/include/uv/ |
H A D | tree.h | 482 #define RB_INSERT(name, x, y) name##_RB_INSERT(x, y) argument 483 #define RB_REMOVE(name, x, y) name##_RB_REMOVE(x, y) argument 484 #define RB_FIND(name, x, y) name##_RB_FIND(x, y) argument 485 #define RB_NFIND(name, x, y) name##_RB_NFIND(x, y) argument 496 #define RB_FOREACH_FROM(x, name, y) \ argument 497 for ((x) = (y); \ 498 ((x) != NULL) && ((y) = name##_RB_NEXT(x), (x) != NULL); \ 499 (x) = (y)) 504 (x) = (y)) 514 (x) = (y)) [all …]
|
/libuv/src/ |
H A D | idna.c | 164 unsigned y; in uv__idna_toascii_label() local 241 y = h + 1; in uv__idna_toascii_label() 243 if (x > ~delta / y) in uv__idna_toascii_label() 246 delta += x * y; in uv__idna_toascii_label() 278 y = 36 - t; /* 10 <= y <= 35 since 1 <= t <= 26. */ in uv__idna_toascii_label() 279 q = x / y; in uv__idna_toascii_label() 280 t = t + x % y; /* 1 <= t <= 35 because of y. */ in uv__idna_toascii_label()
|
/libuv/src/win/ |
H A D | tty.c | 1161 y = info->dwCursorPosition.Y + y; in uv__tty_make_real_coord() 1163 y = uv_tty_virtual_offset + y; in uv__tty_make_real_coord() 1166 if (y < uv_tty_virtual_offset) { in uv__tty_make_real_coord() 1167 y = uv_tty_virtual_offset; in uv__tty_make_real_coord() 1184 result.Y = (unsigned short) y; in uv__tty_make_real_coord() 1211 int y, unsigned char y_relative, DWORD* error) { in uv__tty_move_caret() argument 1956 int x, y, d; local 1961 y = -(handle->tty.wr.ansi_csi_argc 1969 y = handle->tty.wr.ansi_csi_argc 1993 y = handle->tty.wr.ansi_csi_argc [all …]
|
/libuv/.github/workflows/ |
H A D | CI-win.yml | 87 sudo apt install mingw-w64 ninja-build -y
|
H A D | CI-unix.yml | 179 sudo apt install ${{ matrix.config.toolchain }} -y
|
/libuv/ |
H A D | CONTRIBUTING.md | 50 * Code that is specific to unix-y platforms should be placed in `src/unix`, and
|
Completed in 19 milliseconds