h_offset 666 lib/common/iso8601.c int h_offset = GMTOFF(now_tm) / HOUR_SECONDS; h_offset 667 lib/common/iso8601.c int m_offset = (GMTOFF(now_tm) - (HOUR_SECONDS * h_offset)) / 60; h_offset 669 lib/common/iso8601.c if (h_offset < 0 && m_offset < 0) { h_offset 672 lib/common/iso8601.c *offset = (HOUR_SECONDS * h_offset) + (60 * m_offset); h_offset 1213 lib/common/iso8601.c int h_offset = 0; h_offset 1245 lib/common/iso8601.c h_offset = GMTOFF(source) / HOUR_SECONDS; h_offset 1246 lib/common/iso8601.c m_offset = (GMTOFF(source) - (HOUR_SECONDS * h_offset)) / 60; h_offset 1248 lib/common/iso8601.c GMTOFF(source), h_offset, m_offset); h_offset 1250 lib/common/iso8601.c target->offset += HOUR_SECONDS * h_offset;