usr.sbin/zic/zic.c
102
static void addtt(zic_t starttime, int type);
usr.sbin/zic/zic.c
1028
zic_t year;
usr.sbin/zic/zic.c
103
static int addtype(zic_t gmtoff, const char *abbr, int isdst,
usr.sbin/zic/zic.c
1030
zic_t dayoff, tod;
usr.sbin/zic/zic.c
1031
zic_t t;
usr.sbin/zic/zic.c
105
static void leapadd(zic_t t, int positive, int rolling, int count);
usr.sbin/zic/zic.c
1080
if (dayoff < 0 && !TYPE_SIGNED(zic_t)) {
usr.sbin/zic/zic.c
1092
t = (zic_t) dayoff * SECSPERDAY;
usr.sbin/zic/zic.c
110
static zic_t gethms(const char *string, const char *errstrng,
usr.sbin/zic/zic.c
123
static zic_t oadd(zic_t t1, zic_t t2);
usr.sbin/zic/zic.c
125
static zic_t rpytime(const struct rule *rp, zic_t wantedy);
usr.sbin/zic/zic.c
1308
convert64(const zic_t val, char * const buf)
usr.sbin/zic/zic.c
132
static zic_t tadd(const zic_t t1, const zic_t t2);
usr.sbin/zic/zic.c
1328
puttzcode64(const zic_t val, FILE * const fp)
usr.sbin/zic/zic.c
1339
const zic_t a = ((const struct attype *) avp)->at;
usr.sbin/zic/zic.c
1340
const zic_t b = ((const struct attype *) bvp)->at;
usr.sbin/zic/zic.c
1346
is32(const zic_t x)
usr.sbin/zic/zic.c
1362
zic_t ats[TZ_MAX_TIMES];
usr.sbin/zic/zic.c
140
static zic_t leapminyear;
usr.sbin/zic/zic.c
141
static zic_t leapmaxyear;
usr.sbin/zic/zic.c
145
static zic_t max_year;
usr.sbin/zic/zic.c
146
static zic_t min_year;
usr.sbin/zic/zic.c
1630
zic_t todo;
usr.sbin/zic/zic.c
1710
updateminmax(const zic_t x)
usr.sbin/zic/zic.c
1719
stringoffset(char *result, zic_t offset)
usr.sbin/zic/zic.c
1749
stringrule(char *result, const struct rule * const rp, const zic_t dstoff,
usr.sbin/zic/zic.c
1750
const zic_t gmtoff)
usr.sbin/zic/zic.c
1752
zic_t tod = rp->r_tod;
usr.sbin/zic/zic.c
1952
zic_t starttime, untiltime;
usr.sbin/zic/zic.c
1953
zic_t gmtoff;
usr.sbin/zic/zic.c
1954
zic_t stdoff;
usr.sbin/zic/zic.c
1955
zic_t year;
usr.sbin/zic/zic.c
1956
zic_t startoff;
usr.sbin/zic/zic.c
2121
zic_t jtime, ktime;
usr.sbin/zic/zic.c
2122
zic_t offset;
usr.sbin/zic/zic.c
2276
addtt(const zic_t starttime, int type)
usr.sbin/zic/zic.c
2302
addtype(const zic_t gmtoff, const char * const abbr, const int isdst,
usr.sbin/zic/zic.c
2358
leapadd(const zic_t t, const int positive, const int rolling, int count)
usr.sbin/zic/zic.c
2391
zic_t last = 0;
usr.sbin/zic/zic.c
2522
static __pure zic_t
usr.sbin/zic/zic.c
2523
oadd(const zic_t t1, const zic_t t2)
usr.sbin/zic/zic.c
2532
static __pure zic_t
usr.sbin/zic/zic.c
2533
tadd(const zic_t t1, const zic_t t2)
usr.sbin/zic/zic.c
2551
static zic_t
usr.sbin/zic/zic.c
2552
rpytime(const struct rule * const rp, const zic_t wantedy)
usr.sbin/zic/zic.c
2555
zic_t dayoff; /* with a nod to Margaret O. */
usr.sbin/zic/zic.c
2556
zic_t t, y;
usr.sbin/zic/zic.c
2592
zic_t wday;
usr.sbin/zic/zic.c
2594
#define LDAYSPERWEEK ((zic_t) DAYSPERWEEK)
usr.sbin/zic/zic.c
2628
t = (zic_t) dayoff * SECSPERDAY;
usr.sbin/zic/zic.c
333
zic_t at;
usr.sbin/zic/zic.c
336
static zic_t gmtoffs[TZ_MAX_TYPES];
usr.sbin/zic/zic.c
342
static zic_t trans[TZ_MAX_LEAPS];
usr.sbin/zic/zic.c
343
static zic_t corr[TZ_MAX_LEAPS];
usr.sbin/zic/zic.c
52
zic_t r_loyear; /* for example, 1986 */
usr.sbin/zic/zic.c
53
zic_t r_hiyear; /* for example, 1986 */
usr.sbin/zic/zic.c
64
zic_t r_tod; /* time from midnight */
usr.sbin/zic/zic.c
640
static const zic_t min_time = (zic_t) -1 << (TIME_T_BITS_IN_FILE - 1);
usr.sbin/zic/zic.c
641
static const zic_t max_time = -1 - ((zic_t) -1 << (TIME_T_BITS_IN_FILE - 1));
usr.sbin/zic/zic.c
69
zic_t r_stdoff; /* offset from standard time */
usr.sbin/zic/zic.c
73
zic_t r_temp; /* used in outzone */
usr.sbin/zic/zic.c
833
static zic_t
usr.sbin/zic/zic.c
836
zic_t hh;
usr.sbin/zic/zic.c
89
zic_t z_gmtoff;
usr.sbin/zic/zic.c
93
zic_t z_stdoff;
usr.sbin/zic/zic.c
99
zic_t z_untiltime;