Lines Matching refs:timestamp_ticks
935 def __init__(self, timestamp_seconds, timestamp_ticks, u): argument
937 self._timestamp_ticks = timestamp_ticks
945 def timestamp_ticks(self): member in ActiveTimestamp
955 …f.timestamp_seconds == other.timestamp_seconds and self.timestamp_ticks == other.timestamp_ticks a…
960 self.timestamp_seconds, self.timestamp_ticks, self.u)
970 timestamp_ticks = ticks >> 1
972 return ActiveTimestamp(timestamp_seconds, timestamp_ticks, u)
977 def __init__(self, timestamp_seconds, timestamp_ticks, u): argument
979 self._timestamp_ticks = timestamp_ticks
987 def timestamp_ticks(self): member in PendingTimestamp
997 …f.timestamp_seconds == other.timestamp_seconds and self.timestamp_ticks == other.timestamp_ticks a…
1002 self.timestamp_seconds, self.timestamp_ticks, self.u)
1012 timestamp_ticks = ticks >> 1
1014 return PendingTimestamp(timestamp_seconds, timestamp_ticks, u)