/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/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/arm-trusted-firmware/include/lib/ |
D | smccc.h | 157 smc_uuid_word((_uuid).time_low[0], (_uuid).time_low[1], \ 158 (_uuid).time_low[2], (_uuid).time_low[3]), \
|
/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/python/cpython3/Lib/ |
D | uuid.py | 192 (time_low, time_mid, time_hi_version, 194 if not 0 <= time_low < 1<<32: 207 int = ((time_low << 96) | (time_mid << 80) | 296 return (self.time_low, self.time_mid, self.time_hi_version, 300 def time_low(self): member in UUID 322 (self.time_mid << 32) | self.time_low) 694 time_low = timestamp & 0xffffffff 701 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/rust/crates/uuid/src/ |
D | v1.rs | 202 let time_low = (ts.ticks & 0xFFFF_FFFF) as u32; in new_v1() localVariable 216 Uuid::from_fields(time_low, time_mid, time_high_and_version, &d4) in new_v1()
|
/external/arm-trusted-firmware/include/tools_share/ |
D | uuid.h | 51 uint8_t time_low[4]; member
|
/external/vboot_reference/firmware/2lib/include/ |
D | 2guid.h | 18 uint32_t time_low; member
|
/external/arm-trusted-firmware/tools/fiptool/ |
D | fiptool.c | 246 u->time_low[0], u->time_low[1], u->time_low[2], u->time_low[3], in uuid_to_str() 266 &u->time_low[0], &u->time_low[1], &u->time_low[2], &u->time_low[3], in uuid_from_str()
|
/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/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/arm-trusted-firmware/drivers/io/ |
D | io_fip.c | 31 x.time_low, x.time_mid, x.time_hi_and_version, \
|
/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 | 177 equal(u.time_low, fields[0])
|