fmt                51 src/inet.c       static const char fmt[] = "%u.%u.%u.%u";
fmt                56 src/inet.c       l = snprintf(tmp, sizeof(tmp), fmt, src[0], src[1], src[2], src[3]);
fmt                58 src/inet.c       l = _snprintf(tmp, sizeof(tmp), fmt, src[0], src[1], src[2], src[3]);
fmt               707 src/win/fs.c     const WCHAR* fmt;
fmt               710 src/win/fs.c       fmt = L"./*";
fmt               712 src/win/fs.c       fmt = L"%s*";
fmt               714 src/win/fs.c       fmt = L"%s\\*";
fmt               730 src/win/fs.c     swprintf(path2, len + 3, fmt, pathw);
fmt               732 src/win/fs.c     swprintf(path2, fmt, pathw);
fmt                91 test/benchmark-async-pummel.c          fmt(callbacks),
fmt                93 test/benchmark-async-pummel.c          fmt(callbacks / (time / 1e9)));
fmt               113 test/benchmark-async.c          fmt(NUM_PINGS / (time / 1e9)));
fmt                77 test/benchmark-fs-stat.c          fmt(1.0 * NUM_SYNC_REQS),
fmt                79 test/benchmark-fs-stat.c          fmt((1.0 * NUM_SYNC_REQS) / ((after - before) / 1e9)));
fmt               115 test/benchmark-fs-stat.c            fmt(1.0 * NUM_ASYNC_REQS),
fmt               118 test/benchmark-fs-stat.c            fmt((1.0 * NUM_ASYNC_REQS) / ((after - before) / 1e9)));
fmt               104 test/benchmark-million-async.c           fmt(container->async_events),
fmt               106 test/benchmark-million-async.c           fmt(container->async_events / (timeout / 1000.)),
fmt               107 test/benchmark-million-async.c           fmt(container->handles_seen));
fmt               130 test/task.h    const char* fmt(double d);
fmt               163 test/task.h    static int snprintf(char* buf, size_t len, const char* fmt, ...) {
fmt               167 test/task.h      va_start(ap, fmt);
fmt               168 test/task.h      n = _vsprintf_p(buf, len, fmt, ap);