Home | History | Annotate | Download | only in interface

Lines Matching defs:Ticks

44     WebRtc_Word64 Ticks() const;
48 static WebRtc_Word64 TicksToMilliseconds(const WebRtc_Word64 ticks);
50 // Returns a TickTime that is ticks later than the passed TickTime
51 friend TickTime operator+(const TickTime lhs, const WebRtc_Word64 ticks);
55 // Returns a TickInterval that is the difference in ticks beween rhs and lhs
109 inline TickTime operator+(const TickTime lhs, const WebRtc_Word64 ticks)
112 time._ticks += ticks;
218 inline WebRtc_Word64 TickTime::Ticks() const
240 inline WebRtc_Word64 TickTime::TicksToMilliseconds(const WebRtc_Word64 ticks)
246 return (ticks * 1000) / qpfreq.QuadPart;
248 return ticks;
251 return ticks / 1000000LL;
253 return ticks / 1000LL;
257 inline TickTime& TickTime::operator+=(const WebRtc_Word64& ticks)
259 _ticks += ticks;