Home
last modified time | relevance | path

Searched refs:v (Results 1 – 15 of 15) sorted by relevance

/libuv/test/
H A Drunner.c41 uint64_t v; in fmt() local
45 v = (uint64_t) d; in fmt()
49 if (v == 0) in fmt()
52 while (v) { in fmt()
53 if (v) *--p = '0' + (v % 10), v /= 10; in fmt()
54 if (v) *--p = '0' + (v % 10), v /= 10; in fmt()
55 if (v) *--p = '0' + (v % 10), v /= 10; in fmt()
56 if (v) *--p = ','; in fmt()
H A Dbenchmark-udp-pummel.c224 BENCHMARK_IMPL(udp_pummel_##a##v##b) { \
227 BENCHMARK_IMPL(udp_timed_pummel_##a##v##b) { \
/libuv/src/
H A Dversion.c24 #define UV_STRINGIFY(v) UV_STRINGIFY_HELPER(v) argument
25 #define UV_STRINGIFY_HELPER(v) #v argument
H A Duv-common.h69 #define uv__exchange_int_relaxed(p, v) \ argument
70 InterlockedExchangeNoFence((LONG volatile*)(p), v)
72 #define uv__exchange_int_relaxed(p, v) \ argument
73 atomic_exchange_explicit((_Atomic int*)(p), v, memory_order_relaxed)
/libuv/src/unix/
H A Dos390-syscalls.c393 uint64_t v; in mkdtemp() local
412 if (read(fd, &v, sizeof(v)) != sizeof(v)) in mkdtemp()
417 *cp++ = tempchars[v % num_chars]; in mkdtemp()
418 v /= num_chars; in mkdtemp()
H A Dos390.c221 struct utmpx *v; in uv_uptime() local
225 v = getutxid(&u); in uv_uptime()
226 if (v == NULL) in uv_uptime()
228 *uptime = difftime64(time64(&t), v->ut_tv.tv_sec); in uv_uptime()
/libuv/.github/workflows/
H A DCI-sample.yml13 - v[0-9].*
H A Dsanitizer.yml12 - v[0-9].*
H A DCI-win.yml13 - v[0-9].*
H A DCI-unix.yml13 - v[0-9].*
/libuv/
H A DREADME.md105 * [LXJS 2012 talk](http://www.youtube.com/watch?v=nGn60vDSxQ4)
287 $ valgrind --trace-children=yes -v --tool=memcheck --leak-check=full --track-origins=yes --leak-res…
H A DAUTHORS387 Evgeny Ermakov <evgeny.v.ermakov@gmail.com>
400 Vladimir Karnushin <v.karnushin@mail.ru>
H A DLICENSE-docs236 v. a URI or hyperlink to the Licensed Material to the
H A DChangeLog3809 * linux,fs: fix p{read,write}v with a 64bit offset (Saúl Ibarra Corretgé)
/libuv/src/win/
H A Dfs.c1183 uint64_t v; in fs__mktemp() local
1196 if (uv__random_rtlgenrandom((void *)&v, sizeof(v)) < 0) { in fs__mktemp()
1203 *cp++ = tempchars[v % num_chars]; in fs__mktemp()
1204 v /= num_chars; in fs__mktemp()

Completed in 78 milliseconds