HomeSort by: relevance | last modified time | path
    Searched defs:days_per_year (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/sys/
clock.h 88 days_per_year(uint64_t year) function
  /src/external/bsd/ntp/dist/ntpd/
check_y2k.c 335 #define days_per_year(x) ((x) % 4 ? 365 : ((x % 400) ? ((x % 100) ? 366 : 365) : 366)) macro
343 DayCnt = (int)days_per_year(year);
349 " days_per_year() %4d %2d %3d *** ERROR\n",
refclock_leitch.c 109 static int days_per_year (int);
517 * days_per_year
520 days_per_year( function
571 if ((days_per_year((leitch->year>90?1900:2000)+leitch->year)==365) &&
  /src/external/bsd/ntp/dist/libparse/
parse.c 399 #define days_per_year(x) ((x) % 4 ? 365 : ((x % 400) ? ((x % 100) ? 366 : 365) : 366)) macro
442 if (clock_time->month < 3 && days_per_year(clock_time->year) == 366)
454 if (clock_time->day < 1 || ((clock_time->month == 2 && days_per_year(clock_time->year) == 366) ?
  /src/external/bsd/ntp/dist/parseutil/
dcfd.c 87 #ifndef days_per_year
88 #define days_per_year(_x_) (((_x_) % 4) ? 365 : (((_x_) % 400) ? 365 : 366)) macro
812 if (clock_time->month < 3 && days_per_year(clock_time->year) == 366)
824 if (clock_time->day < 1 || ((clock_time->month == 2 && days_per_year(clock_time->year) == 366) ?

Completed in 27 milliseconds