Searched refs:days (Results 1 – 2 of 2) sorted by relevance
80 long days, rem, y; in time64_to_tm() local84 days = div_s64_rem(totalsecs, SECS_PER_DAY, &remainder); in time64_to_tm()89 --days; in time64_to_tm()93 ++days; in time64_to_tm()102 result->tm_wday = (4 + days) % 7; in time64_to_tm()108 while (days < 0 || days >= (__isleap(y) ? 366 : 365)) { in time64_to_tm()110 long yg = y + math_div(days, 365); in time64_to_tm()113 days -= (yg - y) * 365 + leaps_between(y, yg); in time64_to_tm()119 result->tm_yday = days; in time64_to_tm()122 for (y = 11; days < ip[y]; y--) in time64_to_tm()[all …]
2537 int days = val.uptime / (24*60*60); in kdb_summary() local2539 kdb_printf("%d day%s ", days, days == 1 ? "" : "s"); in kdb_summary()