HomeSort by relevance Sort by last modified time
    Searched refs:COUNT_LEAPS (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/third_party/nspr/
prtime.cc 192 * The COUNT_LEAPS macro counts the number of leap years passed by
206 #define COUNT_LEAPS(Y) ( ((Y)-1)/4 - ((Y)-1)/100 + ((Y)-1)/400 )
207 #define COUNT_DAYS(Y) ( ((Y)-1)*365 + COUNT_LEAPS(Y) )
    [all...]
  /external/chromium_org/base/third_party/nspr/
prtime.cc 197 * The COUNT_LEAPS macro counts the number of leap years passed by
211 #define COUNT_LEAPS(Y) ( ((Y)-1)/4 - ((Y)-1)/100 + ((Y)-1)/400 )
212 #define COUNT_DAYS(Y) ( ((Y)-1)*365 + COUNT_LEAPS(Y) )
    [all...]

Completed in 24 milliseconds