Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Duuid.py151 (time_low, time_mid, time_hi_version,
157 if not 0 <= time_hi_version < 1<<16L:
167 (time_hi_version << 64L) | (clock_seq << 48L) | node)
220 return (self.time_low, self.time_mid, self.time_hi_version,
238 time_hi_version = property(get_time_hi_version) variable in UUID
251 return (((self.time_hi_version & 0x0fffL) << 48L) |
588 time_hi_version = (timestamp >> 48L) & 0x0fffL
593 return UUID(fields=(time_low, time_mid, time_hi_version,
/external/python/cpython3/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,
/external/python/cpython2/Doc/library/
Duuid.rst28 (32-bit *time_low*, 16-bit *time_mid*, 16-bit *time_hi_version*,
60 The UUID as a 16-byte string (with *time_low*, *time_mid*, and *time_hi_version*
76 | :attr:`time_hi_version` | the next 16 bits of the UUID |
/external/python/cpython3/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 |
/external/python/cpython2/Lib/test/
Dtest_uuid.py161 equal(u.time_hi_version, fields[2])
/external/python/cpython3/Lib/test/
Dtest_uuid.py179 equal(u.time_hi_version, fields[2])