Lines Matching refs:off
61 register int off; variable
128 off = (lt->tm_hour - gmt.tm_hour) * 60 + lt->tm_min - gmt.tm_min;
132 off -= 24 * 60;
134 off += 24 * 60;
136 off -= 24 * 60;
138 off += 24 * 60;
141 if (off == 0)
172 tz = timezone(off, lt->tm_isdst);
175 if (off < 0)
177 off = -off;
183 if (off >= 24*60) /* should be impossible */
184 off = 23*60+59; /* if not, insert silly value */
186 *q++ = (off / 600) + '0';
187 *q++ = (off / 60) % 10 + '0';
188 off %= 60;
189 *q++ = (off / 10) + '0';
190 *q++ = (off % 10) + '0';