Home
last modified time | relevance | path

Searched refs:d (Results 1 – 20 of 20) sorted by relevance

/libuv/test/
H A Dtest-strscpy.c30 char d[4]; in TEST_IMPL() local
35 memset(d, 0, sizeof(d)); in TEST_IMPL()
36 ASSERT_EQ(1, uv__strscpy(d, "x", sizeof(d))); in TEST_IMPL()
37 ASSERT_OK(memcmp(d, "x\0\0", sizeof(d))); in TEST_IMPL()
39 memset(d, 0, sizeof(d)); in TEST_IMPL()
40 ASSERT_EQ(2, uv__strscpy(d, "xy", sizeof(d))); in TEST_IMPL()
41 ASSERT_OK(memcmp(d, "xy\0", sizeof(d))); in TEST_IMPL()
43 ASSERT_EQ(3, uv__strscpy(d, "xyz", sizeof(d))); in TEST_IMPL()
44 ASSERT_OK(memcmp(d, "xyz", sizeof(d))); in TEST_IMPL()
47 ASSERT_OK(memcmp(d, "xyz", sizeof(d))); in TEST_IMPL()
[all …]
H A Dtest-idna.c129 char d[256] = {0}; \
131 ASSERT_EQ(err, uv__idna_toascii(s, s + sizeof(s) - 1, d, d + sizeof(d))); \
H A Drunner.c40 char* fmt(char (*buf)[32], double d) { in fmt() argument
45 v = (uint64_t) d; in fmt()
H A Dtask.h274 char* fmt(char (*buf)[32], double d);
H A Dtest-fs.c2993 uv_dirent_t d; in TEST_IMPL() local
2997 ASSERT_NE(UV_EOF, uv_fs_scandir_next(&req, &d)); in TEST_IMPL()
3001 ASSERT_NE(UV_EOF, uv_fs_scandir_next(&req, &d)); in TEST_IMPL()
/libuv/src/
H A Didna.c76 unsigned d; in uv__utf8_decode1_slow() local
122 d &= 63; in uv__utf8_decode1_slow()
191 if (*d < de) *(*d)++ = 'x'; in uv__idna_toascii_label()
192 if (*d < de) *(*d)++ = 'n'; in uv__idna_toascii_label()
193 if (*d < de) *(*d)++ = '-'; in uv__idna_toascii_label()
194 if (*d < de) *(*d)++ = '-'; in uv__idna_toascii_label()
207 if (*d < de) in uv__idna_toascii_label()
328 ds = d; in uv__idna_toascii()
349 if (d < de) in uv__idna_toascii()
362 if (d >= de) in uv__idna_toascii()
[all …]
H A Dstrscpy.c25 ssize_t uv__strscpy(char* d, const char* s, size_t n) { in uv__strscpy() argument
29 if ('\0' == (d[i] = s[i])) in uv__strscpy()
35 d[--i] = '\0'; in uv__strscpy()
H A Dstrscpy.h37 ssize_t uv__strscpy(char* d, const char* s, size_t n);
H A Didna.h29 ssize_t uv__idna_toascii(const char* s, const char* se, char* d, char* de);
/libuv/src/win/
H A Dtty.c1956 int x, y, d; local
2031 d = handle->tty.wr.ansi_csi_argc
2033 if (d >= 0 && d <= 2) {
2034 uv__tty_clear(handle, d, 1, error);
2041 d = handle->tty.wr.ansi_csi_argc
2043 if (d >= 0 && d <= 2) {
2044 uv__tty_clear(handle, d, 0, error);
/libuv/docs/
H A Dmake.bat10 set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% %SRCDIR%
45 for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
/libuv/.github/workflows/
H A DCI-unix.yml130 … DEB=`curl -s $QEMU_SRC/ | grep -o -E 'href="([^"#]+)"' | cut -d'"' -f2 | grep $QEMU_VER | tail -1`
/libuv/
H A DLICENSE-docs93 d. Effective Technological Measures means those measures that, in the
338 d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
370 d. Nothing in this Public License constitutes or may be interpreted
H A DCMakeLists.txt782 set(CMAKE_DEBUG_POSTFIX d)
H A DChangeLog237 * src: don't run timers if loop is stopped/unref'd (Trevor Norris)
/libuv/docs/src/
H A Ddesign.rst69 when is a loop considered to be *alive*? If a loop has active and ref'd handles, active
H A Dfs.rst471 - Resolved path bypasses subst'd drives.
/libuv/m4/
H A Dlibuv-check-flags.m4260 [struct astructure { char a; int b; long c; void *d; } __attribute__((packed));],
/libuv/src/unix/
H A Dcore.c81 # define uv__accept4(a, b, c, d) paccept((a), (b), (c), NULL, (d)) argument
/libuv/docs/src/guide/
H A Dprocesses.rst175 file, but ignore ``stdout``. For this you'd like to have ``stderr`` of the

Completed in 98 milliseconds