Lines Matching refs:int_fast32_t

87     int_fast32_t tt_utoff; /* UT offset in seconds */
96 int_fast32_t ls_corr; /* correction to apply */
144 int_fast32_t r_time; /* transition time of rule */
147 static struct tm *gmtsub(struct state const *, time_t const *, int_fast32_t,
150 static bool increment_overflow_time(time_t *, int_fast32_t);
151 static int_fast32_t leapcorr(struct state const *, time_t);
152 static bool normalize_overflow32(int_fast32_t *, int *, int);
153 static struct tm *timesub(time_t const *, int_fast32_t, struct state const *,
209 init_ttinfo(struct ttinfo *s, int_fast32_t utoff, bool isdst, int desigidx) in init_ttinfo()
227 static int_fast32_t
230 register int_fast32_t result; in detzcode()
232 int_fast32_t one = 1; in detzcode()
233 int_fast32_t halfmaxval = one << (32 - 2); in detzcode()
234 int_fast32_t maxval = halfmaxval - 1 + halfmaxval; in detzcode()
235 int_fast32_t minval = -1 - maxval; in detzcode()
244 result -= !TWOS_COMPLEMENT(int_fast32_t) && result != 0; in detzcode()
496 int_fast32_t datablock_size; in tzloadbody()
497 int_fast32_t ttisstdcnt = detzcode(up->tzhead.tzh_ttisstdcnt); in tzloadbody()
498 int_fast32_t ttisutcnt = detzcode(up->tzhead.tzh_ttisutcnt); in tzloadbody()
500 int_fast32_t prevcorr; in tzloadbody()
501 int_fast32_t leapcnt = detzcode(up->tzhead.tzh_leapcnt); in tzloadbody()
502 int_fast32_t timecnt = detzcode(up->tzhead.tzh_timecnt); in tzloadbody()
503 int_fast32_t typecnt = detzcode(up->tzhead.tzh_typecnt); in tzloadbody()
504 int_fast32_t charcnt = detzcode(up->tzhead.tzh_charcnt); in tzloadbody()
596 int_fast32_t corr = detzcode(p + stored); in tzloadbody()
939 getsecs(register const char *strp, int_fast32_t *const secsp) in getsecs()
942 int_fast32_t secsperhour = SECSPERHOUR; in getsecs()
980 getoffset(register const char *strp, int_fast32_t *const offsetp) in getoffset()
1055 static int_fast32_t
1057 const int_fast32_t offset) in transtime()
1060 register int_fast32_t value; in transtime()
1152 int_fast32_t stdoffset; in tzparse()
1153 int_fast32_t dstoffset; in tzparse()
1220 int_fast32_t janoffset = 0; in tzparse()
1244 int_fast32_t yearsecs in tzparse()
1255 int_fast32_t yearsecs in tzparse()
1271 int_fast32_t in tzparse()
1274 int_fast32_t in tzparse()
1279 int_fast32_t swap = starttime; in tzparse()
1320 register int_fast32_t theirstdoffset; in tzparse()
1321 register int_fast32_t theirdstoffset; in tzparse()
1322 register int_fast32_t theiroffset; in tzparse()
1565 localsub(struct state const *sp, time_t const *timep, int_fast32_t setname, in localsub()
1711 int_fast32_t offset, struct tm *tmp) in gmtsub()
1783 timesub(const time_t *timep, int_fast32_t offset, in timesub()
1789 register int_fast32_t corr; in timesub()
1791 int_fast32_t idays, rem, dayoff, dayrem; in timesub()
1837 int_fast32_t ydelta = tdelta + !tdelta; in timesub()
1936 increment_overflow32(int_fast32_t *const lp, int const m) in increment_overflow32()
1941 register int_fast32_t const l = *lp; in increment_overflow32()
1951 increment_overflow_time(time_t *tp, int_fast32_t j) in increment_overflow_time()
1983 normalize_overflow32(int_fast32_t *tensptr, int *unitsptr, int base) in normalize_overflow32()
2030 int_fast32_t, struct tm *), in time2sub() argument
2032 const int_fast32_t offset, in time2sub()
2039 register int_fast32_t li; in time2sub()
2042 int_fast32_t y; in time2sub()
2174 int_fast32_t diff = mytm.TM_GMTOFF - yourtm.TM_GMTOFF; in time2sub()
2235 int_fast32_t, struct tm *), in time2() argument
2237 const int_fast32_t offset, in time2()
2254 int_fast32_t, struct tm *), in time1() argument
2256 const int_fast32_t offset) in time1()
2400 static int_fast32_t
2532 int_fast32_t offset = EPOCH_LOCAL ? (daylight ? timezone : altzone) : 0; in time()