Home | History | Annotate | Download | only in tzcode

Lines Matching refs:int_fast32_t

93     int_fast32_t tt_gmtoff;  /* UT offset in seconds */
135 int_fast32_t r_time; /* transition time of rule */
149 static int_fast32_t detzcode(const char * codep);
157 static const char * getsecs(const char * strp, int_fast32_t * secsp);
158 static const char * getoffset(const char * strp, int_fast32_t * offsetp);
161 static struct tm * gmtsub(const time_t * timep, int_fast32_t offset,
163 static struct tm * localsub(const time_t * timep, int_fast32_t offset,
167 static int increment_overflow32(int_fast32_t * number, int delta);
168 static int increment_overflow_time(time_t *t, int_fast32_t delta);
169 static int normalize_overflow32(int_fast32_t * tensptr,
176 int_fast32_t, struct tm *, struct state *), // android-changed: added state*.
177 int_fast32_t, struct state * sp); // android-changed: added sp.
180 int_fast32_t, struct tm*, struct state *), // android-changed: added state*.
181 int_fast32_t offset, int * okayp, struct state * sp); // android-changed: added sp.
184 int_fast32_t, struct tm*, struct state *), // android-changed: added state*.
185 int_fast32_t offset, int * okayp, int do_norm_secs, struct state * sp); // android-change: added sp.
186 static struct tm * timesub(const time_t * timep, int_fast32_t offset,
190 static int_fast32_t transtime(int year, const struct rule * rulep,
191 int_fast32_t offset)
243 static int_fast32_t
246 register int_fast32_t result;
728 getsecs(register const char *strp, int_fast32_t *const secsp)
741 *secsp = num * (int_fast32_t) SECSPERHOUR;
768 getoffset(register const char *strp, int_fast32_t *const offsetp)
843 static int_fast32_t
845 const int_fast32_t offset)
848 register int_fast32_t value;
942 int_fast32_t stdoffset;
943 int_fast32_t dstoffset;
1030 int_fast32_t
1033 int_fast32_t
1038 int_fast32_t swap = starttime;
1068 register int_fast32_t theirstdoffset;
1069 register int_fast32_t theirdstoffset;
1070 register int_fast32_t theiroffset;
1285 localsub(const time_t * const timep, const int_fast32_t offset,
1391 gmtsub(const time_t * const timep, const int_fast32_t offset,
1463 timesub(const time_t *const timep, const int_fast32_t offset,
1526 register int_fast32_t seconds;
1645 increment_overflow32(int_fast32_t *const lp, int const m)
1647 register int_fast32_t const l = *lp;
1656 increment_overflow_time(time_t *tp, int_fast32_t j)
1684 normalize_overflow32(int_fast32_t *const tensptr, int *const unitsptr,
1714 struct tm *(*const funcp)(const time_t*, int_fast32_t, struct tm*, struct state*),
1715 const int_fast32_t offset,
1722 register int_fast32_t li;
1725 int_fast32_t y;
1893 struct tm * (*const funcp)(const time_t *, int_fast32_t, struct tm *, struct state *), // android-changed: added sp.
1894 const int_fast32_t offset,
1910 struct tm * (* const funcp) (const time_t *, int_fast32_t, struct tm *, struct state *), // android-changed: added sp.
1911 const int_fast32_t offset, struct state * sp) // android-changed: added sp.