Lines Matching refs:intmax_t
44 #define SECSPER400YEARS (SECSPERNYEAR * (intmax_t) (300 + 3) \
45 + SECSPERLYEAR * (intmax_t) (100 - 3))
89 static intmax_t delta(struct tm *, struct tm *);
97 ATTRIBUTE_PURE_114833 static time_t yeartot(intmax_t);
514 intmax_t lo; in main()
515 intmax_t hi; in main()
517 register intmax_t cutloyear = ZDUMP_LO_YEAR; in main()
518 register intmax_t cuthiyear = ZDUMP_HI_YEAR; in main()
677 yeartot(intmax_t y) in yeartot()
679 register intmax_t myy, seconds, years; in yeartot()
686 intmax_t diff400 = (y - myy) / 400; in yeartot()
702 intmax_t diff400 = (myy - y) / 400; in yeartot()
767 static intmax_t
770 intmax_t oldy = oldp->tm_year; in delta_nonneg()
772 intmax_t sec = SECSPERREPEAT, result = cycles * sec; in delta_nonneg()
786 static intmax_t
1191 intmax_t: "%"PRIdMAX, uintmax_t: "%"PRIuMAX, in tformat()
1197 if (sizeof(time_t) == sizeof(intmax_t)) in tformat()