gmt_offset        513 ext/date/lib/parse_tz.c 	timelib_time_offset *gmt_offset;
gmt_offset        522 ext/date/lib/parse_tz.c 			gmt_offset = timelib_get_time_zone_info(t->sse, t->tz_info);
gmt_offset        523 ext/date/lib/parse_tz.c 			retval = gmt_offset->offset;
gmt_offset        524 ext/date/lib/parse_tz.c 			timelib_time_offset_dtor(gmt_offset);
gmt_offset        423 ext/date/lib/tm2unixtime.c 					timelib_time_offset *gmt_offset;
gmt_offset        425 ext/date/lib/tm2unixtime.c 					gmt_offset = timelib_get_time_zone_info(tz->sse + tmp, tzi);
gmt_offset        426 ext/date/lib/tm2unixtime.c 					tz->z = gmt_offset->offset;
gmt_offset        428 ext/date/lib/tm2unixtime.c 					tz->dst = gmt_offset->is_dst;
gmt_offset        432 ext/date/lib/tm2unixtime.c 					tz->tz_abbr = timelib_strdup(gmt_offset->abbr);
gmt_offset        433 ext/date/lib/tm2unixtime.c 					timelib_time_offset_dtor(gmt_offset);
gmt_offset        158 ext/date/lib/unixtime2tm.c 			timelib_time_offset *gmt_offset;
gmt_offset        160 ext/date/lib/unixtime2tm.c 			gmt_offset = timelib_get_time_zone_info(tm->sse, tm->tz_info);
gmt_offset        161 ext/date/lib/unixtime2tm.c 			timelib_unixtime2gmt(tm, tm->sse + gmt_offset->offset);
gmt_offset        162 ext/date/lib/unixtime2tm.c 			timelib_time_offset_dtor(gmt_offset);
gmt_offset        181 ext/date/lib/unixtime2tm.c 	timelib_time_offset *gmt_offset;
gmt_offset        198 ext/date/lib/unixtime2tm.c 			gmt_offset = timelib_get_time_zone_info(ts, tz);
gmt_offset        199 ext/date/lib/unixtime2tm.c 			timelib_unixtime2gmt(tm, ts + gmt_offset->offset);
gmt_offset        203 ext/date/lib/unixtime2tm.c 			tm->dst = gmt_offset->is_dst;
gmt_offset        204 ext/date/lib/unixtime2tm.c 			tm->z = gmt_offset->offset;
gmt_offset        207 ext/date/lib/unixtime2tm.c 			timelib_time_tz_abbr_update(tm, gmt_offset->abbr);
gmt_offset        208 ext/date/lib/unixtime2tm.c 			timelib_time_offset_dtor(gmt_offset);
gmt_offset        251 ext/date/lib/unixtime2tm.c 	timelib_time_offset *gmt_offset;
gmt_offset        253 ext/date/lib/unixtime2tm.c 	gmt_offset = timelib_get_time_zone_info(t->sse, tz);
gmt_offset        254 ext/date/lib/unixtime2tm.c 	t->z = gmt_offset->offset;
gmt_offset        261 ext/date/lib/unixtime2tm.c 	t->dst = gmt_offset->is_dst;
gmt_offset        266 ext/date/lib/unixtime2tm.c 	t->tz_abbr = timelib_strdup(gmt_offset->abbr);
gmt_offset        267 ext/date/lib/unixtime2tm.c 	timelib_time_offset_dtor(gmt_offset);
gmt_offset        140 ext/date/php_date.c 	ZEND_ARG_INFO(0, gmt_offset)
gmt_offset        149 ext/date/php_date.c 	ZEND_ARG_INFO(0, gmt_offset)
gmt_offset       4630 ext/date/php_date.c 	double latitude = 0.0, longitude = 0.0, zenith = 0.0, gmt_offset = 0, altitude;
gmt_offset       4639 ext/date/php_date.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|ldddd", &time, &retformat, &latitude, &longitude, &zenith, &gmt_offset) == FAILURE) {
gmt_offset       4680 ext/date/php_date.c 		gmt_offset = timelib_get_current_offset(t) / 3600;
gmt_offset       4694 ext/date/php_date.c 	N = (calc_sunset ? h_set : h_rise) + gmt_offset;