h_offset 795 lib/common/iso8601.c int h_offset = GMTOFF(now_tm) / HOUR_SECONDS; h_offset 796 lib/common/iso8601.c int m_offset = (GMTOFF(now_tm) - (HOUR_SECONDS * h_offset)) / 60; h_offset 798 lib/common/iso8601.c if (h_offset < 0 && m_offset < 0) { h_offset 801 lib/common/iso8601.c *offset = (HOUR_SECONDS * h_offset) + (60 * m_offset); h_offset 1405 lib/common/iso8601.c int h_offset = 0; h_offset 1438 lib/common/iso8601.c h_offset = GMTOFF(source) / HOUR_SECONDS; h_offset 1439 lib/common/iso8601.c m_offset = (GMTOFF(source) - (HOUR_SECONDS * h_offset)) / 60; h_offset 1441 lib/common/iso8601.c GMTOFF(source), h_offset, m_offset); h_offset 1443 lib/common/iso8601.c target->offset += HOUR_SECONDS * h_offset;