Lines Matching refs:time
90 void tomoyo_convert_time(time_t time, struct tomoyo_time *stamp) in tomoyo_convert_time() argument
99 stamp->sec = time % 60; in tomoyo_convert_time()
100 time /= 60; in tomoyo_convert_time()
101 stamp->min = time % 60; in tomoyo_convert_time()
102 time /= 60; in tomoyo_convert_time()
103 stamp->hour = time % 24; in tomoyo_convert_time()
104 time /= 24; in tomoyo_convert_time()
107 if (time < days) in tomoyo_convert_time()
109 time -= days; in tomoyo_convert_time()
112 for (m = 0; m < 11 && time >= tomoyo_eom[r][m]; m++) in tomoyo_convert_time()
115 time -= tomoyo_eom[r][m - 1]; in tomoyo_convert_time()
118 stamp->day = ++time; in tomoyo_convert_time()