Searched refs:uptime_ns (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_platform_windows.cpp | 23 void WriteMemoryProfile(char *buf, uptr buf_size, u64 uptime_ns) {} in WriteMemoryProfile() argument
|
H A D | tsan_platform_linux.cpp | 119 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 D | tsan_platform_mac.cpp | 153 void WriteMemoryProfile(char *buf, uptr buf_size, u64 uptime_ns) { in WriteMemoryProfile() argument
|
H A D | tsan_platform.h | 1029 void WriteMemoryProfile(char *buf, uptr buf_size, u64 uptime_ns);
|
/freebsd/contrib/jemalloc/src/ |
H A D | stats.c | 56 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()
|