Lines Matching refs:offset
211 static struct tm * gmtsub P((const time_t * timep, long offset,
213 static struct tm * localsub P((const time_t * timep, long offset,
226 long offset));
230 long offset, int * okayp));
234 long offset, int * okayp, int do_norm_secs));
235 static struct tm * timesub P((const time_t * timep, long offset,
240 const struct rule * rulep, long offset));
900 transtime(janfirst, year, rulep, offset) in transtime() argument
904 const long offset;
986 return value + rulep->r_time + offset;
1326 localsub(timep, offset, tmp) in localsub() argument
1328 const long offset;
1340 return gmtsub(timep, offset, tmp);
1367 result = localsub(&newt, offset, tmp);
1448 gmtsub(timep, offset, tmp) in gmtsub() argument
1450 const long offset;
1463 result = timesub(timep, offset, gmtptr, tmp);
1470 if (offset != 0)
1514 offtime(timep, offset) in offtime() argument
1516 const long offset;
1518 return gmtsub(timep, offset, &tmGlobal);
1537 timesub(timep, offset, sp, tmp) in timesub() argument
1539 const long offset;
1616 rem += offset - corr;
1665 tmp->TM_GMTOFF = offset;
1791 time2sub(tmp, funcp, offset, okayp, do_norm_secs) in time2sub() argument
1794 const long offset;
1900 if ((*funcp)(&t, offset, &mytm) == NULL) {
1953 if ((*funcp)(&newt, offset, &mytm) == NULL)
1973 if ((*funcp)(&t, offset, tmp))
1979 time2(tmp, funcp, offset, okayp) in time2() argument
1982 const long offset;
1992 t = time2sub(tmp, funcp, offset, okayp, FALSE);
1993 return *okayp ? t : time2sub(tmp, funcp, offset, okayp, TRUE);
1997 time1(tmp, funcp, offset) in time1() argument
2000 const long offset;
2014 t = time2(tmp, funcp, offset, &okay);
2062 t = time2(tmp, funcp, offset, &okay);
2110 timeoff(tmp, offset) in timeoff() argument
2112 const long offset;
2118 result = time1(tmp, gmtsub, offset);