ta                 32 ext/calendar/cal_unix.c 	struct tm *ta, tmbuf;
ta                 44 ext/calendar/cal_unix.c 	if (!(ta = php_localtime_r(&ts, &tmbuf))) {
ta                 48 ext/calendar/cal_unix.c 	RETURN_LONG(GregorianToSdn(ta->tm_year+1900, ta->tm_mon+1, ta->tm_mday));
ta               1642 ext/date/php_date.c 	struct tm            ta;
ta               1669 ext/date/php_date.c 	ta.tm_sec   = ts->s;
ta               1670 ext/date/php_date.c 	ta.tm_min   = ts->i;
ta               1671 ext/date/php_date.c 	ta.tm_hour  = ts->h;
ta               1672 ext/date/php_date.c 	ta.tm_mday  = ts->d;
ta               1673 ext/date/php_date.c 	ta.tm_mon   = ts->m - 1;
ta               1674 ext/date/php_date.c 	ta.tm_year  = ts->y - 1900;
ta               1675 ext/date/php_date.c 	ta.tm_wday  = timelib_day_of_week(ts->y, ts->m, ts->d);
ta               1676 ext/date/php_date.c 	ta.tm_yday  = timelib_day_of_year(ts->y, ts->m, ts->d);
ta               1678 ext/date/php_date.c 		ta.tm_isdst = 0;
ta               1680 ext/date/php_date.c 		ta.tm_gmtoff = 0;
ta               1683 ext/date/php_date.c 		ta.tm_zone = "GMT";
ta               1688 ext/date/php_date.c 		ta.tm_isdst = offset->is_dst;
ta               1690 ext/date/php_date.c 		ta.tm_gmtoff = offset->offset;
ta               1693 ext/date/php_date.c 		ta.tm_zone = offset->abbr;
ta               1701 ext/date/php_date.c 	while ((real_len=strftime(buf, buf_len, format, &ta))==buf_len || real_len==0) {
ta                505 ext/opcache/zend_accelerator_module.c 	struct tm *ta;
ta                530 ext/opcache/zend_accelerator_module.c 			ta = localtime(&script->dynamic_members.last_used);
ta                531 ext/opcache/zend_accelerator_module.c 			str = asctime(ta);
ta               2982 ext/soap/php_encoding.c 	struct tm *ta, tmbuf;
ta               2997 ext/soap/php_encoding.c 		ta = php_localtime_r(&timestamp, &tmbuf);
ta               2999 ext/soap/php_encoding.c 		if (!ta) {
ta               3004 ext/soap/php_encoding.c 		while ((real_len = strftime(buf, buf_len, format, ta)) == buf_len || real_len == 0) {
ta               3012 ext/soap/php_encoding.c 		snprintf(tzbuf, sizeof(tzbuf), "%c%02d:%02d", (ta->tm_gmtoff < 0) ? '-' : '+', abs(ta->tm_gmtoff / 3600), abs( (ta->tm_gmtoff % 3600) / 60 ));
ta               3015 ext/soap/php_encoding.c 		snprintf(tzbuf, sizeof(tzbuf), "%c%02d:%02d", ((ta->tm_isdst ? _timezone - 3600:_timezone)>0)?'-':'+', abs((ta->tm_isdst ? _timezone - 3600 : _timezone) / 3600), abs(((ta->tm_isdst ? _timezone - 3600 : _timezone) % 3600) / 60));
ta               3017 ext/soap/php_encoding.c 		snprintf(tzbuf, sizeof(tzbuf), "%c%02d:%02d", ((ta->tm_isdst ? timezone - 3600:timezone)>0)?'-':'+', abs((ta->tm_isdst ? timezone - 3600 : timezone) / 3600), abs(((ta->tm_isdst ? timezone - 3600 : timezone) % 3600) / 60));
ta                924 ext/standard/info.c 	        struct tm *ta, tmbuf;
ta                927 ext/standard/info.c 	        ta = php_localtime_r(&the_time, &tmbuf);
ta                930 ext/standard/info.c 	        if (ta && (ta->tm_mon==3) && (ta->tm_mday==1)) {
ta               1535 main/main.c    				struct tm *ta, tmbuf;
ta               1541 main/main.c    				ta = php_localtime_r(&curtime, &tmbuf);
ta               1542 main/main.c    				datetime_str = php_asctime_r(ta, asctimebuf);