Lines Matching refs:timestamp_ticks
936 def __init__(self, timestamp_seconds, timestamp_ticks, u): argument
938 self._timestamp_ticks = timestamp_ticks
946 def timestamp_ticks(self): member in ActiveTimestamp
956 …f.timestamp_seconds == other.timestamp_seconds and self.timestamp_ticks == other.timestamp_ticks a…
961 self.timestamp_seconds, self.timestamp_ticks, self.u)
971 timestamp_ticks = ticks >> 1
973 return ActiveTimestamp(timestamp_seconds, timestamp_ticks, u)
978 def __init__(self, timestamp_seconds, timestamp_ticks, u): argument
980 self._timestamp_ticks = timestamp_ticks
988 def timestamp_ticks(self): member in PendingTimestamp
998 …f.timestamp_seconds == other.timestamp_seconds and self.timestamp_ticks == other.timestamp_ticks a…
1003 self.timestamp_seconds, self.timestamp_ticks, self.u)
1013 timestamp_ticks = ticks >> 1
1015 return PendingTimestamp(timestamp_seconds, timestamp_ticks, u)