Home
last modified time | relevance | path

Searched refs:uptime_ns (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_platform_windows.cpp23 void WriteMemoryProfile(char *buf, uptr buf_size, u64 uptime_ns) {} in WriteMemoryProfile() argument
H A Dtsan_platform_linux.cpp119 void WriteMemoryProfile(char *buf, uptr buf_size, u64 uptime_ns) { in WriteMemoryProfile() argument
144 internal_getpid(), uptime_ns / (1000 * 1000 * 1000), ctx->global_epoch, in WriteMemoryProfile()
H A Dtsan_platform_mac.cpp153 void WriteMemoryProfile(char *buf, uptr buf_size, u64 uptime_ns) { in WriteMemoryProfile() argument
H A Dtsan_platform.h1029 void WriteMemoryProfile(char *buf, uptr buf_size, u64 uptime_ns);
/freebsd/contrib/jemalloc/src/
H A Dstats.c56 rate_per_second(uint64_t value, uint64_t uptime_ns) { in rate_per_second() argument
58 if (uptime_ns == 0 || value == 0) { in rate_per_second()
61 if (uptime_ns < billion) { in rate_per_second()
64 uint64_t uptime_s = uptime_ns / billion; in rate_per_second()