Home
last modified time | relevance | path

Searched refs:nstime_ns (Results 1 – 10 of 10) sorted by relevance

/external/jemalloc_new/src/
Dbackground_thread.c133 uint64_t decay_interval_ns = nstime_ns(&decay->interval);
244 assert(nstime_ns(&next_wakeup) <
247 nstime_ns(&next_wakeup));
671 uint64_t decay_interval_ns = nstime_ns(&decay->interval);
680 if (nstime_ns(&diff) < BACKGROUND_THREAD_MIN_INTERVAL_NS) {
685 size_t n_epoch = (size_t)(nstime_ns(&diff) / decay_interval_ns);
Dnstime.c22 nstime_ns(const nstime_t *time) { in nstime_ns() function
Dctl.c2651 nstime_ns(&ctl_stats->background_thread.run_interval), uint64_t) in CTL_RO_NL_CGEN()
2660 nstime_ns(&arenas_i(mib[2])->astats->astats.uptime), uint64_t) in CTL_RO_NL_CGEN()
2742 nstime_ns(&l.tot_wait_time), uint64_t) \ in CTL_RO_NL_CGEN()
2744 nstime_ns(&l.max_wait_time), uint64_t) \ in CTL_RO_NL_CGEN()
Darena.c440 nstime_ns(&decay->interval))); in arena_decay_deadline_init()
/external/jemalloc_new/include/jemalloc/internal/
Dnstime.h14 uint64_t nstime_ns(const nstime_t *time);
Dbackground_thread_inlines.h23 uint64_t next_wakeup = nstime_ns(&info->next_wakeup); in background_thread_wakeup_time_get()
Dprivate_namespace_jet.h252 #define nstime_ns JEMALLOC_N(nstime_ns) macro
Dprivate_namespace.h249 #define nstime_ns JEMALLOC_N(nstime_ns) macro
/external/jemalloc_new/test/src/
Dtimer.c21 return nstime_ns(&delta) / 1000; in timer_usec()
/external/jemalloc_new/test/unit/
Dnstime.c9 assert_u64_eq(nstime_ns(&nst), 42000000043, "ns incorrectly read"); in TEST_BEGIN()