Home | History | Annotate | Download | only in interface

Lines Matching defs:Ticks

47     WebRtc_Word64 Ticks() const;
51 static WebRtc_Word64 TicksToMilliseconds(const WebRtc_Word64 ticks);
53 // Returns a TickTime that is ticks later than the passed TickTime
54 friend TickTime operator+(const TickTime lhs, const WebRtc_Word64 ticks);
58 // Returns a TickInterval that is the difference in ticks beween rhs and lhs
112 inline TickTime operator+(const TickTime lhs, const WebRtc_Word64 ticks)
115 time._ticks += ticks;
237 inline WebRtc_Word64 TickTime::Ticks() const
259 inline WebRtc_Word64 TickTime::TicksToMilliseconds(const WebRtc_Word64 ticks)
265 return (ticks * 1000) / qpfreq.QuadPart;
267 return ticks;
270 return ticks / 1000000LL;
272 return ticks / 1000LL;
276 inline TickTime& TickTime::operator+=(const WebRtc_Word64& ticks)
278 _ticks += ticks;