| /PHP_5_4/ext/xmlrpc/libxmlrpc/ |
| H A D | xml_to_soap.c | 521 struct tm *tm = localtime (&tt); local 523 if(strftime (buf, BUF_SIZE, "%Y-%m-%dT%H:%M:%SZ", tm)) {
|
| H A D | xmlrpc.c | 176 static time_t mkgmtime(struct tm *tm) argument 180 return ((((((tm->tm_year - 70) * 365) + mdays[tm->tm_mon] + tm->tm_mday-1 + 181 (tm->tm_year-68-1+(tm->tm_mon>=2))/4) * 24) + tm->tm_hour) * 60 + 182 tm->tm_min) * 60 + tm 186 struct tm tm; local 269 struct tm *tm, tmbuf; local [all...] |
| /PHP_5_4/sapi/fpm/fpm/ |
| H A D | zlog.c | 69 struct tm t;
|
| /PHP_5_4/ext/calendar/ |
| H A D | cal_unix.c | 32 struct tm *ta, tmbuf;
|
| H A D | easter.c | 32 struct tm te; 39 struct tm b, *res;
|
| /PHP_5_4/ext/date/lib/ |
| H A D | timelib.c | 69 void timelib_time_tz_abbr_update(timelib_time* tm, char* tz_abbr) argument 73 TIMELIB_TIME_FREE(tm->tz_abbr); 74 tm->tz_abbr = strdup(tz_abbr); 76 tm->tz_abbr[i] = toupper(tz_abbr[i]);
|
| H A D | timelib.h | 91 void timelib_unixtime2gmt(timelib_time* tm, timelib_sll ts); 92 void timelib_unixtime2local(timelib_time *tm, timelib_sll ts); 93 void timelib_update_from_sse(timelib_time *tm); 108 void timelib_time_tz_abbr_update(timelib_time* tm, char* tz_abbr); 109 void timelib_time_tz_name_update(timelib_time* tm, char* tz_name); 118 void timelib_time_set_option(timelib_time* tm, int option, void* option_value);
|
| H A D | unixtime2tm.c | 40 void timelib_unixtime2gmt(timelib_time* tm, timelib_sll ts) argument 123 tm->y = cur_year; 124 tm->m = i + 1; 125 tm->d = tmp_days - months[i]; 126 tm->h = hours; 127 tm->i = minutes; 128 tm->s = seconds; 129 tm->z = 0; 130 tm->dst = 0; 131 tm 137 timelib_update_from_sse(timelib_time *tm) argument 176 timelib_unixtime2local(timelib_time *tm, timelib_sll ts) argument [all...] |
| /PHP_5_4/ext/ftp/ |
| H A D | ftp.c | 992 struct tm *gmt, tmbuf; 993 struct tm tm; local 1008 n = sscanf(ptr, "%4u%2u%2u%2u%2u%2u", &tm.tm_year, &tm.tm_mon, &tm.tm_mday, &tm.tm_hour, &tm.tm_min, &tm.tm_sec); 1012 tm [all...] |
| /PHP_5_4/ext/interbase/ |
| H A D | ibase_query.c | 532 struct tm t = { 0, 0, 0, 0, 0, 0 }; 689 struct tm t; 695 struct tm *res; 1320 struct tm t;
|
| H A D | php_ibase_udf.c | 218 struct tm t;
|
| /PHP_5_4/ext/standard/ |
| H A D | datetime.c | 56 struct tm *tm1, tmbuf; 81 char *strptime(const char *s, const char *format, struct tm *tm); 92 struct tm parsed_time;
|
| H A D | info.c | 1201 struct tm *ta, tmbuf;
|
| H A D | ftp_fopen_wrapper.c | 835 struct tm tm, tmbuf, *gmt; local 846 n = sscanf(p, "%4u%2u%2u%2u%2u%2u", &tm.tm_year, &tm.tm_mon, &tm.tm_mday, &tm.tm_hour, &tm.tm_min, &tm.tm_sec); 851 tm.tm_year -= 1900; 852 tm [all...] |
| /PHP_5_4/main/ |
| H A D | php_reentrancy.h | 63 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm); 67 struct tm *localtime_r(const time_t *const timep, struct tm *p_tm); 85 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf); 89 char *asctime_r(const struct tm *tm, char *buf); 96 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_t [all...] |
| H A D | reentrancy.c | 68 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) argument 70 if (asctime_r(tm, buf) == buf) 84 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) 98 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) argument 100 if (asctime_r(tm, buf, 26) != -1) 105 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_t 215 php_asctime_r(const struct tm *tm, char *buf) argument [all...] |
| /PHP_5_4/ext/mysqlnd/ |
| H A D | mysqlnd_debug.c | 105 struct tm *tm_p; 203 struct tm *tm_p;
|
| /PHP_5_4/ext/zip/lib/ |
| H A D | zip_dirent.c | 373 static struct tm torrenttime; 379 struct tm *l; 492 struct tm tm; 494 memset(&tm, 0, sizeof(tm)); 497 tm.tm_isdst = -1; 499 tm.tm_year = ((ddate>>9)&127) + 1980 - 1900; 500 tm.tm_mon = ((ddate>>5)&15) - 1; 501 tm 481 struct tm tm; local 611 struct tm *tm; local [all...] |
| /PHP_5_4/sapi/cli/ |
| H A D | php_cli_server.c | 315 struct tm tm; local 319 /* TODO: should be checked for NULL tm/return vaue */ 320 php_localtime_r(&tv.tv_sec, &tm); 321 php_asctime_r(&tm, buf);
|
| /PHP_5_4/ext/fileinfo/libmagic/ |
| H A D | cdf_time.c | 101 struct tm tm; local 112 tm.tm_sec = (int)(t % 60); 115 tm.tm_min = (int)(t % 60); 118 tm.tm_hour = (int)(t % 24); 122 tm.tm_year = (int)(CDF_BASE_YEAR + (t / 365)); 124 rdays = cdf_getdays(tm.tm_year); 126 tm.tm_mday = cdf_getday(tm.tm_year, (int)t); 127 tm 155 struct tm tm; local [all...] |
| H A D | print.c | 80 struct tm *tm; local 97 struct tm *tm1; 108 tm = gmtime(&t); 109 if (tm == NULL) 111 pp = asctime_r(tm, buf);
|
| /PHP_5_4/ext/phar/ |
| H A D | zip.c | 126 struct tm *tm, tmbuf; local 130 tm = php_localtime_r(&now, &tmbuf); 132 tm->tm_year = ((ddate>>9)&127) + 1980 - 1900; 133 tm->tm_mon = ((ddate>>5)&15) - 1; 134 tm->tm_mday = ddate&31; 136 tm->tm_hour = (dtime>>11)&31; 137 tm->tm_min = (dtime>>5)&63; 138 tm->tm_sec = (dtime<<1)&62; 140 return mktime(tm); 147 struct tm *tm, tmbuf; local [all...] |
| /PHP_5_4/ext/pdo_firebird/ |
| H A D | firebird_statement.c | 355 struct tm t;
|
| /PHP_5_4/ext/session/ |
| H A D | session.c | 1024 struct tm tm, *res; local 1027 res = php_gmtime_r(when, &tm); 1035 week_days[tm.tm_wday], tm.tm_mday, 1036 month_names[tm.tm_mon], tm.tm_year + 1900, 1037 tm.tm_hour, tm.tm_min, 1038 tm [all...] |
| /PHP_5_4/ext/com_dotnet/ |
| H A D | com_variant.c | 925 struct tm tmv; 953 struct tm *tmv;
|