Home
last modified time | relevance | path

Searched refs:time_low (Results 1 – 25 of 26) sorted by relevance

12

/external/vboot_reference/host/lib21/
Dhost_misc.c99 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/
Duuid.c18 __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/
Dsmccc.h157 smc_uuid_word((_uuid).time_low[0], (_uuid).time_low[1], \
158 (_uuid).time_low[2], (_uuid).time_low[3]), \
/external/python/cpython2/Lib/
Duuid.py151 (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/
Duuid.py192 (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/
Dcompare.c50 UUCMP(uuid1.time_low, uuid2.time_low); in uuid_compare()
DuuidP.h51 uint32_t time_low; member
Dpack.c44 tmp = uu->time_low; in uuid_pack()
Dunpack.c48 uu->time_low = tmp; in uuid_unpack()
Dparse.c66 uuid.time_low = strtoul(in, NULL, 16); in uuid_parse()
Dunparse.c58 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version, in uuid_unparse_x()
Dgen_uuid.c598 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()
Duuid_time.c68 clock_reg = uuid.time_low | ((uint64_t) high << 32); in uuid_time()
/external/rust/crates/uuid/src/
Dv1.rs202 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/
Duuid.h51 uint8_t time_low[4]; member
/external/vboot_reference/firmware/2lib/include/
D2guid.h18 uint32_t time_low; member
/external/arm-trusted-firmware/tools/fiptool/
Dfiptool.c246 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/
Dgpt.h55 uint32_t time_low; member
/external/vboot_reference/cgpt/
Dcgpt_common.c367 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/
Duuid.rst28 (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/
Duuid.rst50 (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/
Dicount.c152 __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/
Dio_fip.c31 x.time_low, x.time_mid, x.time_hi_and_version, \
/external/python/cpython2/Lib/test/
Dtest_uuid.py159 equal(u.time_low, fields[0])
/external/python/cpython3/Lib/test/
Dtest_uuid.py177 equal(u.time_low, fields[0])

12