Lines Matching refs:off
779 long off = gmtoff(tmp, NULL, gmtmp); in show() local
781 if (off != LONG_MIN) in show()
782 printf(" gmtoff=%ld", off); in show()
859 long off = gmtoff(tm, &t, NULL); in format_utc_offset() local
860 char sign = ((off < 0 in format_utc_offset()
861 || (off == 0 in format_utc_offset()
866 if (off < 0) in format_utc_offset()
868 if (off == LONG_MIN) in format_utc_offset()
870 off = -off; in format_utc_offset()
872 ss = off % 60; in format_utc_offset()
873 mm = off / 60 % 60; in format_utc_offset()
874 hh = off / 60 / 60; in format_utc_offset()