Searched refs:clock_seq_low (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Lib/ |
D | uuid.py | 152 clock_seq_hi_variant, clock_seq_low, node) = fields 161 if not 0 <= clock_seq_low < 1<<8L: 165 clock_seq = (clock_seq_hi_variant << 8L) | clock_seq_low 221 self.clock_seq_hi_variant, self.clock_seq_low, self.node) 248 clock_seq_low = property(get_clock_seq_low) variable in UUID 258 self.clock_seq_low) 589 clock_seq_low = clock_seq & 0xffL 594 clock_seq_hi_variant, clock_seq_low, node), version=1)
|
/external/python/cpython3/Lib/ |
D | uuid.py | 176 clock_seq_hi_variant, clock_seq_low, node) = fields 185 if not 0 <= clock_seq_low < 1<<8: 189 clock_seq = (clock_seq_hi_variant << 8) | clock_seq_low 282 self.clock_seq_hi_variant, self.clock_seq_low, self.node) 301 def clock_seq_low(self): member in UUID 312 self.clock_seq_low) 744 clock_seq_low = clock_seq & 0xff 749 clock_seq_hi_variant, clock_seq_low, node), version=1)
|
/external/vboot_reference/host/lib21/ |
D | host_misc.c | 130 guid->uuid.clock_seq_low = chunk[4] & 0xff; in vb2_str_to_guid() 155 guid->uuid.clock_seq_low, in vb2_guid_to_str()
|
/external/python/cpython2/Lib/test/ |
D | test_uuid.py | 163 equal(u.clock_seq_low, fields[4]) 349 equal(((u.clock_seq_hi_variant & 0x3f) << 8) | u.clock_seq_low, 0) 353 u.clock_seq_low, 0x1234) 357 u.clock_seq_low, 0x3fff)
|
/external/vboot_reference/firmware/2lib/include/ |
D | 2guid.h | 22 uint8_t clock_seq_low; member
|
/external/u-boot/include/ |
D | uuid.h | 15 unsigned char clock_seq_low; member
|
/external/vboot_reference/firmware/include/ |
D | gpt.h | 59 uint8_t clock_seq_low; member
|
/external/python/cpython3/Lib/test/ |
D | test_uuid.py | 176 equal(u.clock_seq_low, fields[4]) 505 equal(((u.clock_seq_hi_variant & 0x3f) << 8) | u.clock_seq_low, 0) 509 u.clock_seq_low, 0x1234) 513 u.clock_seq_low, 0x3fff)
|
/external/python/cpython2/Doc/library/ |
D | uuid.rst | 29 8-bit *clock_seq_hi_variant*, 8-bit *clock_seq_low*, 48-bit *node*) as the 80 | :attr:`clock_seq_low` | the next 8 bits of the UUID |
|
/external/python/cpython3/Doc/library/ |
D | uuid.rst | 51 8-bit *clock_seq_hi_variant*, 8-bit *clock_seq_low*, 48-bit *node*) as the 109 | :attr:`clock_seq_low` | the next 8 bits of the UUID |
|
/external/vboot_reference/cgpt/ |
D | cgpt_common.c | 397 guid->u.Uuid.clock_seq_low = chunk[4] & 0xff; in StrToGuid() 415 guid->u.Uuid.clock_seq_low, in GuidToStr()
|