Home | History | Annotate | Download | only in gen

Lines Matching defs:zone

64 static char	czone[TZ_MAX_CHARS];		/* space for zone name */
67 timezone(int zone, int dst)
83 return(_tztab(zone,dst)); /* default: table or created zone */
86 static const struct zone {
111 * check static tables or create a new zone name; broken out so that
112 * we can make a guess as to what the zone is if the standard tables
117 _tztab(int zone, int dst)
119 const struct zone *zp;
123 if (zp->offset == zone) {
130 if (zone < 0) { /* create one */
131 zone = -zone;
136 (void)snprintf(czone, TZ_MAX_CHARS, "GMT%c%d:%02d", sign, zone / 60,
137 zone % 60);