Lines Matching refs:time_temp
57 struct tm time_temp; in es32f0_rtc_control() local
66 time_temp.tm_sec = time.second; in es32f0_rtc_control()
67 time_temp.tm_min = time.minute; in es32f0_rtc_control()
68 time_temp.tm_hour = time.hour; in es32f0_rtc_control()
69 time_temp.tm_mday = date.day; in es32f0_rtc_control()
70 time_temp.tm_mon = date.month - 1; in es32f0_rtc_control()
71 time_temp.tm_year = date.year - 1900 + 2000; in es32f0_rtc_control()
72 *((time_t *)args) = timegm(&time_temp); in es32f0_rtc_control()
76 gmtime_r((const time_t *)args, &time_temp); in es32f0_rtc_control()
77 time.hour = time_temp.tm_hour; in es32f0_rtc_control()
78 time.minute = time_temp.tm_min; in es32f0_rtc_control()
79 time.second = time_temp.tm_sec; in es32f0_rtc_control()
80 date.year = time_temp.tm_year + 1900 - 2000; in es32f0_rtc_control()
81 date.month = time_temp.tm_mon + 1; in es32f0_rtc_control()
82 date.day = time_temp.tm_mday; in es32f0_rtc_control()