/external/vboot_reference/host/lib21/ |
D | host_misc.c | 100 uint16_t time_mid; in vb2_str_to_guid() local 122 time_mid = chunk[1] & 0xffff; in vb2_str_to_guid() 126 guid->uuid.time_mid = htole16(time_mid); in vb2_str_to_guid() 152 le16toh(guid->uuid.time_mid), in vb2_guid_to_str()
|
/external/python/cpython2/Lib/ |
D | uuid.py | 151 (time_low, time_mid, time_hi_version, 155 if not 0 <= time_mid < 1<<16L: 166 int = ((time_low << 96L) | (time_mid << 80L) | 220 return (self.time_low, self.time_mid, self.time_hi_version, 233 time_mid = property(get_time_mid) variable in UUID 252 (self.time_mid << 32L) | self.time_low) 567 time_mid = (timestamp >> 32L) & 0xffffL 573 return UUID(fields=(time_low, time_mid, time_hi_version,
|
/external/e2fsprogs/lib/e2p/ |
D | uuid.c | 19 __u16 time_mid; member 50 uu->time_mid = tmp; in e2p_unpack_uuid() 70 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version, in e2p_uuid_to_str()
|
/external/python/cpython3/Lib/ |
D | uuid.py | 155 (time_low, time_mid, time_hi_version, 159 if not 0 <= time_mid < 1<<16: 170 int = ((time_low << 96) | (time_mid << 80) | 243 return (self.time_low, self.time_mid, self.time_hi_version, 251 def time_mid(self): member in UUID 269 (self.time_mid << 32) | self.time_low) 585 time_mid = (timestamp >> 32) & 0xffff 591 return UUID(fields=(time_low, time_mid, time_hi_version,
|
/external/e2fsprogs/lib/uuid/ |
D | compare.c | 51 UUCMP(uuid1.time_mid, uuid2.time_mid); in uuid_compare()
|
D | uuidP.h | 52 uint16_t time_mid; member
|
D | pack.c | 53 tmp = uu->time_mid; in uuid_pack()
|
D | unpack.c | 52 uu->time_mid = tmp; in uuid_unpack()
|
D | unparse.c | 58 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version, in uuid_unparse_x()
|
D | parse.c | 67 uuid.time_mid = strtoul(in+9, NULL, 16); in uuid_parse()
|
D | gen_uuid.c | 596 uu.time_mid = (uint16_t) clock_mid; in uuid__generate_time() 629 uu.time_mid++; in uuid_generate_time() 630 if (uu.time_mid == 0) in uuid_generate_time()
|
D | uuid_time.c | 67 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16); in uuid_time()
|
/external/vboot_reference/firmware/2lib/include/ |
D | 2guid.h | 19 uint16_t time_mid; member
|
/external/vboot_reference/firmware/include/ |
D | gpt.h | 56 uint16_t time_mid; member
|
/external/vboot_reference/cgpt/ |
D | cgpt_common.c | 368 uint16_t time_mid; in StrToGuid() local 389 time_mid = chunk[1] & 0xffff; in StrToGuid() 393 guid->u.Uuid.time_mid = htole16(time_mid); in StrToGuid() 412 le16toh(guid->u.Uuid.time_mid), in GuidToStr()
|
/external/python/cpython2/Doc/library/ |
D | uuid.rst | 28 *time_mid*, 16-bit *time_hi_version*, 8-bit *clock_seq_hi_variant*, 8-bit 59 The UUID as a 16-byte string (with *time_low*, *time_mid*, and *time_hi_version* 73 | :attr:`time_mid` | the next 16 bits of the UUID |
|
/external/python/cpython3/Doc/library/ |
D | uuid.rst | 28 *time_mid*, 16-bit *time_hi_version*, 8-bit *clock_seq_hi_variant*, 8-bit 66 The UUID as a 16-byte string (with *time_low*, *time_mid*, and *time_hi_version* 80 | :attr:`time_mid` | the next 16 bits of the UUID |
|
/external/e2fsprogs/lib/ext2fs/ |
D | icount.c | 137 __u16 time_mid; member 156 uu->time_mid = tmp; in unpack_uuid() 176 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version, in uuid_unparse()
|
/external/python/cpython2/Lib/test/ |
D | test_uuid.py | 160 equal(u.time_mid, fields[1])
|
/external/python/cpython3/Lib/test/ |
D | test_uuid.py | 163 equal(u.time_mid, fields[1])
|