Searched refs:fmt (Results 1 – 11 of 11) sorted by relevance
/libuv/src/win/ |
H A D | snprintf.c | 30 int snprintf(char* buf, size_t len, const char* fmt, ...) { in snprintf() argument 33 va_start(ap, fmt); in snprintf() 35 n = _vscprintf(fmt, ap); in snprintf() 36 vsnprintf_s(buf, len, _TRUNCATE, fmt, ap); in snprintf()
|
H A D | fs.c | 1559 const WCHAR* fmt; in fs__opendir() local 1582 fmt = L"./*"; in fs__opendir() 1584 fmt = L"%s*"; in fs__opendir() 1586 fmt = L"%s\\*"; in fs__opendir() 1594 _snwprintf(find_path, len + 3, fmt, pathw); in fs__opendir()
|
/libuv/test/ |
H A D | benchmark-fs-stat.c | 78 fmt(&fmtbuf[0], 1.0 * NUM_SYNC_REQS), in sync_bench() 80 fmt(&fmtbuf[1], (1.0 * NUM_SYNC_REQS) / ((after - before) / 1e9))); in sync_bench() 117 fmt(&fmtbuf[0], 1.0 * NUM_ASYNC_REQS), in async_bench() 120 fmt(&fmtbuf[1], (1.0 * NUM_ASYNC_REQS) / ((after - before) / 1e9))); in async_bench()
|
H A D | benchmark-million-async.c | 105 fmt(&fmtbuf[0], container->async_events), in BENCHMARK_IMPL() 107 fmt(&fmtbuf[1], container->async_events / (timeout / 1000.)), in BENCHMARK_IMPL() 108 fmt(&fmtbuf[2], container->handles_seen)); in BENCHMARK_IMPL()
|
H A D | benchmark-queue-work.c | 65 fmt(&fmtbuf[0], events), in BENCHMARK_IMPL() 67 fmt(&fmtbuf[1], events / (timeout / 1000.))); in BENCHMARK_IMPL()
|
H A D | benchmark-async-pummel.c | 92 fmt(&fmtbuf[0], callbacks), in test_async_pummel() 94 fmt(&fmtbuf[1], callbacks / (time / 1e9))); in test_async_pummel()
|
H A D | benchmark-async.c | 116 fmt(&fmtbuf, NUM_PINGS / (time / 1e9))); in test_async()
|
H A D | runner.c | 40 char* fmt(char (*buf)[32], double d) { in fmt() function
|
H A D | task.h | 278 char* fmt(char (*buf)[32], double d);
|
/libuv/src/ |
H A D | inet.c | 49 static const char fmt[] = "%u.%u.%u.%u"; in inet_ntop4() local 53 l = snprintf(tmp, sizeof(tmp), fmt, src[0], src[1], src[2], src[3]); in inet_ntop4()
|
/libuv/m4/ |
H A D | libuv-check-flags.m4 | 196 …[void __attribute__((format(printf, 1, 2))) printflike(const char *fmt, ...) { fmt = (void *)0; }], 203 [char *__attribute__((format_arg(1))) gettextlike(const char *fmt) { fmt = (void *)0; }],
|
Completed in 34 milliseconds