HomeSort by: relevance | last modified time | path
    Searched refs:DAYSPERREPEAT (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libc/time/
localtime.c 1962 + floor((tdays + dayoff) / DAYSPERREPEAT) * YEARSPERREPEAT),
1966 dayrem = (int)(tdays % DAYSPERREPEAT);
1967 dayrem += dayoff % DAYSPERREPEAT;
1969 + ((1 + dayoff / DAYSPERREPEAT + dayrem / DAYSPERREPEAT
1970 - ((dayrem % DAYSPERREPEAT) < 0)
1971 + tdays / DAYSPERREPEAT)
1973 /* idays = (tdays + dayoff) mod DAYSPERREPEAT, sans overflow. */
1974 idays = (int)(tdays % DAYSPERREPEAT);
1975 idays += (dayoff % DAYSPERREPEAT + 2 * DAYSPERREPEAT)
    [all...]
private.h 1063 #define DAYSPERREPEAT ((int_fast32_t) 400 * 365 + 100 - 4 + 1)
1064 #define SECSPERREPEAT ((int_fast64_t) DAYSPERREPEAT * SECSPERDAY)
zic.c 3871 /* dayoff = floor((wantedy - y) / YEARSPERREPEAT) * DAYSPERREPEAT,
3876 * DAYSPERREPEAT);

Completed in 16 milliseconds