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

  /external/wpa_supplicant_6/wpa_supplicant/
config_ssid.h 236 * leap - Number of EAP methods using LEAP
238 * This field should be set to 1 if LEAP is enabled. This is used to
241 int leap; member in struct:wpa_ssid
244 * non_leap - Number of EAP methods not using LEAP
246 * This field should be set to >0 if any EAP method other than LEAP is
  /bionic/libc/bionic/
time64.c 253 /* Don't forget leap seconds */
284 /* The exceptional centuries without leap years cause the cycle to
310 2) Has the same leap year status.
319 It doesn't need the same leap year status since we only care about
337 /* Change non-leap xx00 years to an equivalent */
525 int leap; local
585 leap = IS_LEAP (year);
586 while (m >= (Time64_T) length_of_year[leap]) {
587 m -= (Time64_T) length_of_year[leap];
589 leap = IS_LEAP (year)
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/jni/
drm1_jni.c 41 /** Nonzero if 'y' is a leap year, else zero. */
42 #define leap(y) (((y) % 4 == 0 && (y) % 100 != 0) || (y) % 400 == 0) macro
44 /** Number of leap years from 1970 to 'y' (not including 'y' itself). */
330 day += ydays[month - 1] + (month > 2 && leap (year)) - 1;
  /external/wpa_supplicant/
config_ssid.h 712 * leap - Number of EAP methods using LEAP
714 * This field should be set to 1 if LEAP is enabled. This is used to
717 int leap; member in struct:wpa_ssid
720 * non_leap - Number of EAP methods not using LEAP
722 * This field should be set to >0 if any EAP method other than LEAP is

Completed in 54 milliseconds