Searched refs:time_hi_version (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/ |
D | uuid.py | 151 (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/ |
D | uuid.py | 192 (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/ |
D | uuid.rst | 28 (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/ |
D | uuid.rst | 50 (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/ |
D | test_uuid.py | 161 equal(u.time_hi_version, fields[2])
|
/external/python/cpython3/Lib/test/ |
D | test_uuid.py | 179 equal(u.time_hi_version, fields[2])
|