Home
last modified time | relevance | path

Searched refs:time_hi_version (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Lib/
Duuid.py192 (time_low, time_mid, time_hi_version,
198 if not 0 <= time_hi_version < 1<<16:
208 (time_hi_version << 64) | (clock_seq << 48) | node)
296 return (self.time_low, self.time_mid, self.time_hi_version,
308 def time_hi_version(self): member in UUID
321 return (((self.time_hi_version & 0x0fff) << 48) |
696 time_hi_version = (timestamp >> 48) & 0x0fff
701 return UUID(fields=(time_low, time_mid, time_hi_version,
/third_party/python/Doc/library/
Duuid.rst50 (32-bit *time_low*, 16-bit *time_mid*, 16-bit *time_hi_version*,
89 The UUID as a 16-byte string (with *time_low*, *time_mid*, and *time_hi_version*
105 | :attr:`time_hi_version` | the next 16 bits of the UUID |
/third_party/python/Lib/test/
Dtest_uuid.py180 equal(u.time_hi_version, fields[2])