Searched refs:TimerWord (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dhrtimer.h12 typedef word64 TimerWord; typedef
14 typedef clock_t TimerWord;
24 virtual TimerWord GetCurrentTimerValue() =0; // GetCurrentTime is a macro in MSVC 6.0
25 virtual TimerWord TicksPerSecond() =0; // this is not the resolution, just a conversion factor into seconds
32 double ConvertTo(TimerWord t, Unit unit);
36 TimerWord m_start, m_last;
46 TimerWord GetCurrentTimerValue();
47 TimerWord TicksPerSecond();
55 TimerWord GetCurrentTimerValue();
56 TimerWord TicksPerSecon
[all...]
H A Dhrtimer.cpp23 double TimerBase::ConvertTo(TimerWord t, Unit unit)
44 TimerWord now = GetCurrentTimerValue();
61 TimerWord Timer::GetCurrentTimerValue()
71 return (TimerWord)now.tv_sec * 1000000 + now.tv_usec;
78 TimerWord Timer::TicksPerSecond()
97 TimerWord ThreadUserTimer::GetCurrentTimerValue()
114 return now.dwLowDateTime + ((TimerWord)now.dwHighDateTime << 32);
117 return (TimerWord)clock() * (10*1000*1000 / CLOCKS_PER_SEC);
127 TimerWord ThreadUserTimer::TicksPerSecond()
H A Drandpool.cpp41 TimerWord tw = timer.GetCurrentTimerValue();
43 *(TimerWord *)m_seed.data() += tw;

Completed in 26 milliseconds