Lines Matching refs:YEARSPERREPEAT
3815 /* dayoff = floor((wantedy - y) / YEARSPERREPEAT) * DAYSPERREPEAT,
3817 yrem = wantedy % YEARSPERREPEAT - y % YEARSPERREPEAT;
3818 dayoff = ((wantedy / YEARSPERREPEAT - y / YEARSPERREPEAT
3819 + yrem / YEARSPERREPEAT - (yrem % YEARSPERREPEAT < 0))
3821 /* wantedy = y + ((wantedy - y) mod YEARSPERREPEAT), sans overflow. */
3822 wantedy = y + (yrem + 2 * YEARSPERREPEAT) % YEARSPERREPEAT;