HomeSort by relevance Sort by last modified time
    Searched defs:isleap (Results 1 - 6 of 6) sorted by null

  /onnv/onnv-gate/usr/src/lib/libresolv2/common/nameser/
ns_date.c 84 #define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0) macro
95 if (time.tm_mon > 1 && isleap(1900+time.tm_year))
101 if (isleap(1900+i))
  /onnv/onnv-gate/usr/src/stand/lib/sa/
time.h 76 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
  /onnv/onnv-gate/usr/src/ucbcmd/touch/
touch.c 41 #define isleap(y) (((y) % 4) == 0 && ((y) % 100) != 0 || ((y) % 400) == 0) macro
174 if (tp->tm_mon == 1 && isleap(tp->tm_year + 1900))
  /onnv/onnv-gate/usr/src/head/
tzfile.h 207 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
232 * Since everything in isleap is modulo 400 (or a factor of 400), we know that
233 * isleap(y) == isleap(y % 400)
235 * isleap(a + b) == isleap((a + b) % 400)
237 * isleap(a + b) == isleap(a % 400 + b % 400)
243 #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
str_conv.c 376 #undef isleap
377 #define isleap(N) ((N % 4) == 0 && (N % 100 != 0 || N % 400 == 0))
374 #undef isleap macro
375 #define isleap macro
  /onnv/onnv-gate/usr/src/uts/common/sys/
tzfile.h 142 #define isleap(y) (((y) % 4) == 0 && ((y) % 100) != 0 || ((y) % 400) == 0) macro

Completed in 1859 milliseconds