Home
last modified time | relevance | path

Searched refs:time_low (Results 1 – 18 of 18) 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/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/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)
566 time_low = timestamp & 0xffffffffL
573 return UUID(fields=(time_low, time_mid, time_hi_version,
/external/netperf/src/
Dnet_uuid.c82 uint32_t time_low; member
200 printf("%8.8x-%4.4x-%4.4x-%2.2x%2.2x-", u.time_low, u.time_mid, in puid()
221 u.time_low, in snpuid()
299 uuid->time_low = (unsigned long)(timestamp & 0xFFFFFFFF); in format_uuid_v1()
/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.c594 get_clock(&clock_mid, &uu.time_low, &uu.clock_seq, num); in uuid__generate_time()
627 uu.time_low++; in uuid_generate_time()
628 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/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.rst27 the *bytes_le* argument, a tuple of six integers (32-bit *time_low*, 16-bit
59 The UUID as a 16-byte string (with *time_low*, *time_mid*, and *time_hi_version*
71 | :attr:`time_low` | the first 32 bits of the UUID |
/external/e2fsprogs/lib/ext2fs/
Dicount.c136 __u32 time_low; member
152 uu->time_low = tmp; in unpack_uuid()
176 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])