• Home
  • Raw
  • Download

Lines Matching refs:time_t

90 	time_t		ls_trans;	/* transition time */
110 time_t ats[TZ_MAX_TIMES];
137 static int differ_by_repeat(time_t t1, time_t t0);
147 static struct tm * gmtsub(const time_t * timep, int_fast32_t offset,
149 static struct tm * localsub(const time_t * timep, int_fast32_t offset,
154 static int increment_overflow_time(time_t *t, int_fast32_t delta);
160 static time_t time1(struct tm * tmp,
161 struct tm * (*funcp)(const time_t *,
164 static time_t time2(struct tm *tmp,
165 struct tm * (*funcp)(const time_t *,
168 static time_t time2sub(struct tm *tmp,
169 struct tm * (*funcp)(const time_t *,
172 static struct tm * timesub(const time_t * timep, int_fast32_t offset,
318 differ_by_repeat(const time_t t1, const time_t t0) in differ_by_repeat()
320 if (TYPE_BIT(time_t) - TYPE_SIGNED(time_t) < SECSPERREPEAT_BITS) in differ_by_repeat()
423 sp->types[i] = ((TYPE_SIGNED(time_t) in tzload()
514 if (TYPE_SIGNED(time_t) && stored >= (int) sizeof(time_t)) in tzload()
993 time_t janfirst; in tzparse()
1258 localsub(const time_t *const timep, const int_fast32_t offset, in localsub()
1265 const time_t t = *timep; in localsub()
1272 time_t newt = t; in localsub()
1273 register time_t seconds; in localsub()
1274 register time_t years; in localsub()
1290 register time_t newy; in localsub()
1334 localtime(const time_t *const timep) in localtime()
1345 localtime_r(const time_t *const timep, struct tm *tmp) in localtime_r()
1355 gmtsub(const time_t *const timep, const int_fast32_t offset, in gmtsub()
1381 gmtime(const time_t *const timep) in gmtime()
1391 gmtime_r(const time_t *const timep, struct tm *tmp) in gmtime_r()
1399 offtime(const time_t *const timep, const long offset) in offtime()
1419 timesub(const time_t *const timep, const int_fast32_t offset, in timesub()
1424 register time_t tdays; in timesub()
1461 register time_t tdelta; in timesub()
1466 if (! ((! TYPE_SIGNED(time_t) || INT_MIN <= tdelta) in timesub()
1477 tdays -= ((time_t) newy - y) * DAYSPERNYEAR; in timesub()
1547 ctime(const time_t *const timep) in ctime()
1559 ctime_r(const time_t *const timep, char *buf) in ctime_r()
1612 increment_overflow_time(time_t *tp, int_fast32_t j) in increment_overflow_time()
1620 ? (TYPE_SIGNED(time_t) ? time_t_min - j <= *tp : -1 - j < *tp) in increment_overflow_time()
1668 static time_t
1670 struct tm *(*const funcp)(const time_t *, int_fast32_t, struct tm *), in time2sub() argument
1680 register time_t lo; in time2sub()
1681 register time_t hi; in time2sub()
1683 time_t newt; in time2sub()
1684 time_t t; in time2sub()
1757 if (!TYPE_SIGNED(time_t)) { in time2sub()
1762 for (i = 0; i < (int) TYPE_BIT(time_t) - 1; ++i) in time2sub()
1844 static time_t
1846 struct tm * (*const funcp)(const time_t *, int_fast32_t, struct tm *), in time2() argument
1850 time_t t; in time2()
1861 static time_t
1863 struct tm *(*const funcp) (const time_t *, int_fast32_t, struct tm *), in time1()
1866 register time_t t; in time1()
1933 time_t
1942 time_t
1950 time_t
1958 time_t
1978 const time_t t = mktime(tmp); in gtime()
2002 leapcorr(time_t *timep) in leapcorr()
2018 time_t
2019 time2posix(time_t t) in time2posix()
2025 time_t
2026 posix2time(time_t t) in posix2time()
2028 time_t x; in posix2time()
2029 time_t y; in posix2time()