Home
last modified time | relevance | path

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

/linux/kernel/time/
H A Dtimeconv.c50 u64 u64tmp, udays, century, year; in time64_to_tm() local
107 u64tmp = 4 * udays + 3; in time64_to_tm()
108 century = div64_u64_rem(u64tmp, 146097, &u64tmp); in time64_to_tm()
109 day_of_century = (u32) (u64tmp / 4); in time64_to_tm()
112 u64tmp = 2939745ULL * u32tmp; in time64_to_tm()
113 year_of_century = upper_32_bits(u64tmp); in time64_to_tm()
114 day_of_year = lower_32_bits(u64tmp) / 2939745 / 4; in time64_to_tm()
/linux/drivers/rtc/
H A Dlib.c57 u64 u64tmp; in rtc_time64_to_tm() local
103 u64tmp = 2939745ULL * u32tmp; in rtc_time64_to_tm()
104 year_of_century = upper_32_bits(u64tmp); in rtc_time64_to_tm()
105 day_of_year = lower_32_bits(u64tmp) / 2939745 / 4; in rtc_time64_to_tm()