HomeSort by relevance Sort by last modified time
    Searched refs:time_t_min (Results 1 - 5 of 5) sorted by null

  /external/icu/icu4c/source/tools/tzcode/
private.h 329 static time_t const time_t_min = variable
localtime.c 422 ? time_t_min <= at
426 if (i && !timecnt && at != time_t_min) {
433 sp->ats[timecnt++] = time_t_min;
    [all...]
  /bionic/libc/tzcode/
localtime.c 470 But pretend the last transition before time_t_min
471 occurred at time_t_min. */
479 = ((TYPE_SIGNED(time_t) ? at < time_t_min : at < 0)
480 ? time_t_min : at);
529 = ((TYPE_SIGNED(time_t) ? tr < time_t_min : tr < 0)
530 ? time_t_min : tr);
    [all...]
private.h 511 static time_t const time_t_min = MINVAL(time_t, TYPE_BIT(time_t)); variable
  /external/python/cpython3/Lib/test/
test_time.py 686 self.time_t_min = -2 ** bits
690 return (self.time_t_min <= seconds <= self.time_t_max)
    [all...]

Completed in 207 milliseconds