Home
last modified time | relevance | path

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

/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/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/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/python/cpython3/Lib/
Duuid.py175 (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/
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/vboot_reference/firmware/2lib/include/
D2guid.h18 uint32_t time_low; member
/external/u-boot/include/
Duuid.h11 unsigned int time_low; member
/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/syzkaller/sys/linux/
Dtlk_device.txt25 # Values of time_low, time_mid, time_hi_and_version, clock_seq_and_node don't seem to mean anything.
/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/python/cpython2/Lib/test/
Dtest_uuid.py159 equal(u.time_low, fields[0])
/external/python/cpython3/Lib/test/
Dtest_uuid.py172 equal(u.time_low, fields[0])