Lines Matching refs:myy
692 register intmax_t myy, seconds, years; in yeartot() local
695 myy = EPOCH_YEAR; in yeartot()
697 while (myy < y) { in yeartot()
698 if (SECSPER400YEARS_FITS && 400 <= y - myy) { in yeartot()
699 intmax_t diff400 = (y - myy) / 400; in yeartot()
705 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR; in yeartot()
708 myy += years; in yeartot()
713 while (y < myy) { in yeartot()
714 if (SECSPER400YEARS_FITS && y + 400 <= myy && myy < 0) { in yeartot()
715 intmax_t diff400 = (myy - y) / 400; in yeartot()
721 seconds = isleap(myy - 1) ? SECSPERLYEAR : SECSPERNYEAR; in yeartot()
724 myy -= years; in yeartot()