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 | 175 (time_low, time_mid, time_hi_version, 181 if not 0 <= time_hi_version < 1<<16: 191 (time_hi_version << 64) | (clock_seq << 48) | node) 281 return (self.time_low, self.time_mid, self.time_hi_version, 293 def time_hi_version(self): member in UUID 306 return (((self.time_hi_version & 0x0fff) << 48) | 743 time_hi_version = (timestamp >> 48) & 0x0fff 748 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 | 174 equal(u.time_hi_version, fields[2])
|