Home
last modified time | relevance | path

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

/openbmc/qemu/include/qemu/
H A Duuid.h27 uint32_t time_low; member
55 #define UUID_LE(time_low, time_mid, time_hi_and_version, \ argument
58 { (time_low) & 0xff, ((time_low) >> 8) & 0xff, ((time_low) >> 16) & 0xff, \
59 ((time_low) >> 24) & 0xff, (time_mid) & 0xff, ((time_mid) >> 8) & 0xff, \
65 #define UUID(time_low, time_mid, time_hi_and_version, \ argument
68 { ((time_low) >> 24) & 0xff, ((time_low) >> 16) & 0xff, \
69 ((time_low) >> 8) & 0xff, (time_low) & 0xff, \
/openbmc/u-boot/drivers/tee/
H A Dtee-uclass.c214 d->time_low = ((u32)s[0] << 24) | ((u32)s[1] << 16) | in tee_optee_ta_uuid_from_octets()
224 d[0] = s->time_low >> 24; in tee_optee_ta_uuid_to_octets()
225 d[1] = s->time_low >> 16; in tee_optee_ta_uuid_to_octets()
226 d[2] = s->time_low >> 8; in tee_optee_ta_uuid_to_octets()
227 d[3] = s->time_low; in tee_optee_ta_uuid_to_octets()
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/trusted-firmware-m/files/corstone1000/
H A D0021-platform-corstone1000-add-unique-guid-for-mps3.patch23 .time_low = 0x989f3a4e,
28 + .time_low = 0xdf1865d1,
/openbmc/u-boot/include/
H A Duuid.h11 unsigned int time_low; member
H A Dtee.h63 u32 time_low; member
/openbmc/qemu/util/
H A Duuid.c114 bswap32s(&uuid.fields.time_low); in qemu_uuid_bswap()
/openbmc/ipmitool/lib/
H A Dipmi_mc.c472 uint32_t time_low; /* timestamp low field */ member
521 guid.time_low, guid.time_mid, guid.time_hi_and_version, in ipmi_mc_get_guid()
526 s = (time_t)guid.time_low; /* Kipp - removed the BSWAP_32, it was not needed here */ in ipmi_mc_get_guid()