Lines Matching refs:offset
5 #include "utc-offset.h"
33 int offset;
37 /* numeric offset */
42 offset = ((str[1]-'0') * 10 + (str[2]-'0')) * 60 +
44 return *str == '+' ? offset : -offset;
75 offset = -5 * 60;
78 offset = -6 * 60;
81 offset = -7 * 60;
84 offset = -8 * 60;
92 return offset + 60;
94 return offset;
263 int offset;
267 offset = utc_offset(tm, timestamp);
268 if (offset >= 0)
272 offset = -offset;
281 negative ? '-' : '+', offset / 60, offset % 60);