Lines Matching refs:secs
110 uint64_t secs, mins, hours;115 secs = *timep % (60 * 60 * 24);117 mins = secs / 60;118 secs = secs % 60;127 tm->tm_sec = secs;188 uint64_t secs = 0;206 secs = 24 * days + tm->tm_hour;207 secs = secs * 60 + tm->tm_min;208 secs = secs * 60 + tm->tm_sec;210 secs += TZ_OFFSET_SECS;212 return secs;