h_offset          778 lib/common/iso8601.c         int h_offset = GMTOFF(now_tm) / HOUR_SECONDS;
h_offset          779 lib/common/iso8601.c         int m_offset = (GMTOFF(now_tm) - (HOUR_SECONDS * h_offset)) / 60;
h_offset          781 lib/common/iso8601.c         if (h_offset < 0 && m_offset < 0) {
h_offset          784 lib/common/iso8601.c         *offset = (HOUR_SECONDS * h_offset) + (60 * m_offset);
h_offset         1326 lib/common/iso8601.c     int h_offset = 0;
h_offset         1358 lib/common/iso8601.c     h_offset = GMTOFF(source) / HOUR_SECONDS;
h_offset         1359 lib/common/iso8601.c     m_offset = (GMTOFF(source) - (HOUR_SECONDS * h_offset)) / 60;
h_offset         1361 lib/common/iso8601.c               GMTOFF(source), h_offset, m_offset);
h_offset         1363 lib/common/iso8601.c     target->offset += HOUR_SECONDS * h_offset;