Home
last modified time | relevance | path

Searched refs:t_high (Results 1 – 2 of 2) sorted by relevance

/third_party/e2fsprogs/debugfs/
Dset_fields.c578 __u32 t_low, t_high; in parse_time() local
595 t_high = ((t - (__s32)t) >> 32) & EXT4_EPOCH_MASK; in parse_time()
598 *ptr_high = (*ptr_high & ~EXT4_EPOCH_MASK) | t_high; in parse_time()
/third_party/glib/glib/
Dgmain.c2921 guint64 t_high, t_low; in g_get_monotonic_time()
2927 t_high = (val >> 32) * (guint64) timebase_info.numer; in g_get_monotonic_time()
2928 t_high += (t_low >> 32); in g_get_monotonic_time()
2929 result_high = t_high / (guint64) timebase_info.denom; in g_get_monotonic_time()
2930 result_low = (((t_high % (guint64) timebase_info.denom) << 32) + in g_get_monotonic_time()