h_offset 670 lib/common/iso8601.c int h_offset = GMTOFF(now_tm) / HOUR_SECONDS; h_offset 671 lib/common/iso8601.c int m_offset = (GMTOFF(now_tm) - (HOUR_SECONDS * h_offset)) / 60; h_offset 673 lib/common/iso8601.c if (h_offset < 0 && m_offset < 0) { h_offset 676 lib/common/iso8601.c *offset = (HOUR_SECONDS * h_offset) + (60 * m_offset); h_offset 1217 lib/common/iso8601.c int h_offset = 0; h_offset 1249 lib/common/iso8601.c h_offset = GMTOFF(source) / HOUR_SECONDS; h_offset 1250 lib/common/iso8601.c m_offset = (GMTOFF(source) - (HOUR_SECONDS * h_offset)) / 60; h_offset 1252 lib/common/iso8601.c GMTOFF(source), h_offset, m_offset); h_offset 1254 lib/common/iso8601.c target->offset += HOUR_SECONDS * h_offset;