h_offset          592 lib/common/iso8601.c         int h_offset = GMTOFF(now_tm) / (3600);
h_offset          593 lib/common/iso8601.c         int m_offset = (GMTOFF(now_tm) - (3600 * h_offset)) / (60);
h_offset          595 lib/common/iso8601.c         if (h_offset < 0 && m_offset < 0) {
h_offset          598 lib/common/iso8601.c         offset += (60 * 60 * h_offset);
h_offset         1004 lib/common/iso8601.c     int h_offset = 0;
h_offset         1036 lib/common/iso8601.c     h_offset = GMTOFF(source) / (3600);
h_offset         1037 lib/common/iso8601.c     m_offset = (GMTOFF(source) - (3600 * h_offset)) / (60);
h_offset         1038 lib/common/iso8601.c     crm_trace("Offset (s): %ld, offset (hh:mm): %.2d:%.2d", GMTOFF(source), h_offset, m_offset);
h_offset         1040 lib/common/iso8601.c     target->offset += 60 * 60 * h_offset;