Home
last modified time | relevance | path

Searched refs:stop_time (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/gcc/
H A Dtimevar.c224 struct timevar_time_def *stop_time) in timevar_accumulate() argument
226 timer->user += stop_time->user - start_time->user; in timevar_accumulate()
227 timer->sys += stop_time->sys - start_time->sys; in timevar_accumulate()
228 timer->wall += stop_time->wall - start_time->wall; in timevar_accumulate()
229 timer->ggc_mem += stop_time->ggc_mem - start_time->ggc_mem; in timevar_accumulate()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DTimer.cpp77 auto stop_time = steady_clock::now(); in ~Timer() local
78 auto total_dur = stop_time - m_total_start; in ~Timer()
/freebsd-12.1/contrib/openmp/runtime/src/
H A Dkmp_stats.h653 void push_back(uint64_t start_time, uint64_t stop_time, int nest_level, in push_back() argument
666 kmp_stats_event(start_time, stop_time, nest_level, name); in push_back()
748 inline void push_event(uint64_t start_time, uint64_t stop_time, in push_event() argument
750 _event_vector.push_back(start_time, stop_time, nest_level, name); in push_event()
/freebsd-12.1/contrib/gdb/gdb/
H A Dremote-rdp.c262 time_t stop_time = now + 10; /* Try and sync for 10 seconds, then give up */ in rdp_init() local
265 while (time (0) < stop_time && !sync) in rdp_init()