Home
last modified time | relevance | path

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

/f-stack/freebsd/kern/
H A Dsubr_clock.c92 #define day_of_week(days) (((days) + 4) % 7) argument
141 int i, year, days; in clock_ct_to_ts() local
176 days = recent_base_days; in clock_ct_to_ts()
179 days = 0; in clock_ct_to_ts()
182 days += days_in_year(i); in clock_ct_to_ts()
187 days += (ct->day - 1); in clock_ct_to_ts()
250 time_t i, year, days; in clock_ts_to_ct() local
255 days = secs / SECDAY; in clock_ts_to_ct()
258 ct->dow = day_of_week(days); in clock_ts_to_ct()
263 days -= recent_base_days; in clock_ts_to_ct()
[all …]
H A Dsubr_fattime.c104 uint16_t days; /* month start in days relative to cycle */ member
180 while (m < 47 && mtab[m + 1].days <= t2) in timespec2fattime()
187 t2 -= mtab[m].days - 1; in timespec2fattime()
/f-stack/app/redis-5.0.5/src/
H A Dlocaltime.c66 time_t days = t / secs_day; /* Days passed since epoch. */ in nolocks_localtime() local
77 tmp->tm_wday = (days+4)%7; in nolocks_localtime()
84 if (days_this_year > days) break; in nolocks_localtime()
85 days -= days_this_year; in nolocks_localtime()
88 tmp->tm_yday = days; /* Number of day of the current year. */ in nolocks_localtime()
97 while(days >= mdays[tmp->tm_mon]) { in nolocks_localtime()
98 days -= mdays[tmp->tm_mon]; in nolocks_localtime()
102 tmp->tm_mday = days+1; /* Add 1 since our 'days' is zero-based. */ in nolocks_localtime()
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_times.c331 ngx_uint_t sec, min, hour, mday, mon, year, wday, days, leap; in ngx_gmtime() local
339 days = t / 86400; in ngx_gmtime()
347 if (days > 2932896) { in ngx_gmtime()
348 days = 2932896; in ngx_gmtime()
354 wday = (4 + days) % 7; in ngx_gmtime()
367 days = days - (31 + 28) + 719527; in ngx_gmtime()
376 year = (days + 2) * 400 / (365 * 400 + 100 - 4 + 1); in ngx_gmtime()
378 yday = days - (365 * year + year / 4 - year / 100 + year / 400); in ngx_gmtime()
/f-stack/freebsd/contrib/openzfs/.github/
H A Dstale.yml1 # Number of days of inactivity before an issue becomes stale
3 # Number of days of inactivity before a stale issue is closed
23 any activity for a while. It will be closed in 90 days if no further activity occurs.
H A Dno-response.yml3 # Number of days of inactivity before an Issue is closed for lack of response
/f-stack/tools/ifconfig/
H A Daf_inet6.c431 int days, hours, mins, secs; local
436 days = total / 3600 / 24;
441 if (days) {
443 p += sprintf(p, "%dd", days);
/f-stack/freebsd/arm/conf/
H A Dstd.armv76 options INTRNG # All arm systems use INTRNG these days
H A Dstd.armv66 options INTRNG # All arm systems use INTRNG these days
/f-stack/tools/ndp/
H A Dndp.c1436 int days, hours, mins, secs; in sec2str() local
1442 days = total / 3600 / 24; in sec2str()
1447 if (days) { in sec2str()
1449 n = snprintf(p, ep - p, "%dd", days); in sec2str()
/f-stack/dpdk/doc/guides/contributing/
H A Dvulnerability.rst92 The confirmation mail should be sent within **3 business days**.
235 with only a few days delay between the pre-release and the public disclosure.
244 giving few days to prepare for updating before the public disclosure.
H A Dpatches.rst650 * Patches should be acked by a maintainer at least two days before the release merge
653 comments should be made no later than two days before the merge deadline.
/f-stack/freebsd/contrib/openzfs/
H A DLICENSE278 cure such breach within 30 days of becoming aware of the breach.
292 under Sections 2.1 and/or 2.2 of this License shall, upon 60 days
/f-stack/freebsd/contrib/openzfs/cmd/zpool/
H A Dzpool_main.c7273 uint64_t days = total / 60 / 60 / 24; in secs_to_dhms() local
7278 if (days > 0) { in secs_to_dhms()
7280 (u_longlong_t)days, (u_longlong_t)hours, in secs_to_dhms()
/f-stack/app/redis-5.0.5/
H A D00-RELEASENOTES986 on the clients, sometimes debugging problems for days. Also thank to everybody
2401 Localtime: day of month is 1 based. Convert from 0 based "days".
/f-stack/app/nginx-1.16.1/
H A DCHANGES7336 *) Change: the 10-days live time limit of worker process was eliminated.