Lines Matching refs:offset
2282 abbroffset(char *buf, zic_t offset) in abbroffset() argument
2287 if (offset < 0) { in abbroffset()
2288 offset = -offset; in abbroffset()
2292 seconds = offset % SECSPERMIN; in abbroffset()
2293 offset /= SECSPERMIN; in abbroffset()
2294 minutes = offset % MINSPERHOUR; in abbroffset()
2295 offset /= MINSPERHOUR; in abbroffset()
2296 if (100 <= offset) { in abbroffset()
2302 *p++ = '0' + offset / 10; in abbroffset()
2303 *p++ = '0' + offset % 10; in abbroffset()
2364 stringoffset(char *result, zic_t offset) in stringoffset() argument
2369 bool negative = offset < 0; in stringoffset()
2373 offset = -offset; in stringoffset()
2376 seconds = offset % SECSPERMIN; in stringoffset()
2377 offset /= SECSPERMIN; in stringoffset()
2378 minutes = offset % MINSPERHOUR; in stringoffset()
2379 offset /= MINSPERHOUR; in stringoffset()
2380 hours = offset; in stringoffset()
2777 register zic_t offset; in outzone() local
2805 offset = rp->r_todisut ? 0 : stdoff; in outzone()
2807 offset = oadd(offset, save); in outzone()
2812 jtime = tadd(jtime, -offset); in outzone()
2863 offset = oadd(zp->z_stdoff, rp->r_save); in outzone()
2869 type = addtype(offset, ab, rp->r_isdst, in outzone()