Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/src/platform/stm32f4xx/
Drtc.c262 int32_t time_s; in rtcGetTime() local
280time_s = (((((dr >> 4) & 0x3) * 10) + (dr & 0xF) - 1) + (month << 5) - adjust[month]) * 86400ULL; in rtcGetTime()
281 time_s += ((((tr >> 22) & 0x1) * 43200ULL) + in rtcGetTime()
289 …return (time_s * NS_PER_S) + U64_DIV_BY_CONST_U16(((RTC_PREDIV_S - ssr) * NS_PER_S), (RTC_PREDIV_S… in rtcGetTime()