/external/vboot_reference/host/lib21/ |
D | host_misc.c | 99 uint32_t time_low; in vb2_str_to_guid() local 121 time_low = chunk[0] & 0xffffffff; in vb2_str_to_guid() 125 guid->uuid.time_low = htole32(time_low); in vb2_str_to_guid() 151 le32toh(guid->uuid.time_low), in vb2_guid_to_str()
|
/external/python/cpython2/Lib/ |
D | uuid.py | 151 (time_low, time_mid, time_hi_version, 153 if not 0 <= time_low < 1<<32L: 166 int = ((time_low << 96L) | (time_mid << 80L) | 220 return (self.time_low, self.time_mid, self.time_hi_version, 228 time_low = property(get_time_low) variable in UUID 252 (self.time_mid << 32L) | self.time_low) 586 time_low = timestamp & 0xffffffffL 593 return UUID(fields=(time_low, time_mid, time_hi_version,
|
/external/e2fsprogs/lib/e2p/ |
D | uuid.c | 18 __u32 time_low; member 46 uu->time_low = 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 | 175 (time_low, time_mid, time_hi_version, 177 if not 0 <= time_low < 1<<32: 190 int = ((time_low << 96) | (time_mid << 80) | 281 return (self.time_low, self.time_mid, self.time_hi_version, 285 def time_low(self): member in UUID 307 (self.time_mid << 32) | self.time_low) 741 time_low = timestamp & 0xffffffff 748 return UUID(fields=(time_low, time_mid, time_hi_version,
|
/external/e2fsprogs/lib/uuid/ |
D | compare.c | 50 UUCMP(uuid1.time_low, uuid2.time_low); in uuid_compare()
|
D | uuidP.h | 51 uint32_t time_low; member
|
D | pack.c | 44 tmp = uu->time_low; in uuid_pack()
|
D | unpack.c | 48 uu->time_low = tmp; in uuid_unpack()
|
D | parse.c | 66 uuid.time_low = strtoul(in, NULL, 16); in uuid_parse()
|
D | unparse.c | 58 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version, in uuid_unparse_x()
|
D | gen_uuid.c | 598 get_clock(&clock_mid, &uu.time_low, &uu.clock_seq, num); in uuid__generate_time() 631 uu.time_low++; in uuid_generate_time() 632 if (uu.time_low == 0) { in uuid_generate_time()
|
D | uuid_time.c | 68 clock_reg = uuid.time_low | ((uint64_t) high << 32); in uuid_time()
|
/external/vboot_reference/firmware/2lib/include/ |
D | 2guid.h | 18 uint32_t time_low; member
|
/external/u-boot/include/ |
D | uuid.h | 11 unsigned int time_low; member
|
/external/vboot_reference/firmware/include/ |
D | gpt.h | 55 uint32_t time_low; member
|
/external/vboot_reference/cgpt/ |
D | cgpt_common.c | 367 uint32_t time_low; in StrToGuid() local 388 time_low = chunk[0] & 0xffffffff; in StrToGuid() 392 guid->u.Uuid.time_low = htole32(time_low); in StrToGuid() 411 le32toh(guid->u.Uuid.time_low), in GuidToStr()
|
/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* 72 | :attr:`time_low` | the first 32 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* 101 | :attr:`time_low` | the first 32 bits of the UUID |
|
/external/syzkaller/sys/linux/ |
D | tlk_device.txt | 25 # Values of time_low, time_mid, time_hi_and_version, clock_seq_and_node don't seem to mean anything.
|
/external/e2fsprogs/lib/ext2fs/ |
D | icount.c | 152 __u32 time_low; member 168 uu->time_low = tmp; in unpack_uuid() 192 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version, in uuid_unparse()
|
/external/python/cpython2/Lib/test/ |
D | test_uuid.py | 159 equal(u.time_low, fields[0])
|
/external/python/cpython3/Lib/test/ |
D | test_uuid.py | 172 equal(u.time_low, fields[0])
|