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               1606 ext/date/php_date.c 	struct tm            ta;
ta               1634 ext/date/php_date.c 	ta.tm_sec   = ts->s;
ta               1635 ext/date/php_date.c 	ta.tm_min   = ts->i;
ta               1636 ext/date/php_date.c 	ta.tm_hour  = ts->h;
ta               1637 ext/date/php_date.c 	ta.tm_mday  = ts->d;
ta               1638 ext/date/php_date.c 	ta.tm_mon   = ts->m - 1;
ta               1639 ext/date/php_date.c 	ta.tm_year  = ts->y - 1900;
ta               1640 ext/date/php_date.c 	ta.tm_wday  = timelib_day_of_week(ts->y, ts->m, ts->d);
ta               1641 ext/date/php_date.c 	ta.tm_yday  = timelib_day_of_year(ts->y, ts->m, ts->d);
ta               1643 ext/date/php_date.c 		ta.tm_isdst = 0;
ta               1645 ext/date/php_date.c 		ta.tm_gmtoff = 0;
ta               1648 ext/date/php_date.c 		ta.tm_zone = "GMT";
ta               1653 ext/date/php_date.c 		ta.tm_isdst = offset->is_dst;
ta               1655 ext/date/php_date.c 		ta.tm_gmtoff = offset->offset;
ta               1658 ext/date/php_date.c 		ta.tm_zone = offset->abbr;
ta               1666 ext/date/php_date.c 	while ((real_len = strftime(ZSTR_VAL(buf), buf_len, format, &ta)) == buf_len || real_len == 0) {
ta                536 ext/opcache/zend_accelerator_module.c 	struct tm *ta;
ta                559 ext/opcache/zend_accelerator_module.c 			ta = localtime(&script->dynamic_members.last_used);
ta                560 ext/opcache/zend_accelerator_module.c 			str = asctime(ta);
ta               2869 ext/soap/php_encoding.c 	struct tm *ta, tmbuf;
ta               2884 ext/soap/php_encoding.c 		ta = php_localtime_r(&timestamp, &tmbuf);
ta               2886 ext/soap/php_encoding.c 		if (!ta) {
ta               2891 ext/soap/php_encoding.c 		while ((real_len = strftime(buf, buf_len, format, ta)) == buf_len || real_len == 0) {
ta               2899 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               2902 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               2904 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                845 ext/standard/info.c 	        struct tm *ta, tmbuf;
ta                848 ext/standard/info.c 	        ta = php_localtime_r(&the_time, &tmbuf);
ta                851 ext/standard/info.c 	        if (ta && (ta->tm_mon==3) && (ta->tm_mday==1)) {
ta               1479 main/main.c    				struct tm *ta, tmbuf;
ta               1485 main/main.c    				ta = php_localtime_r(&curtime, &tmbuf);
ta               1486 main/main.c    				datetime_str = php_asctime_r(ta, asctimebuf);