Lines Matching refs:tm
276 struct tm *tm, tmz; in file_fmtdatetime() local
292 tm = php_localtime_r(&t, &tmz); in file_fmtdatetime()
294 tm = php_gmtime_r(&t, &tmz); in file_fmtdatetime()
296 if (tm == NULL) in file_fmtdatetime()
298 pp = php_asctime_r(tm, buf); in file_fmtdatetime()
316 struct tm tm; in file_fmtdate() local
318 memset(&tm, 0, sizeof(tm)); in file_fmtdate()
319 tm.tm_mday = v & 0x1f; in file_fmtdate()
320 tm.tm_mon = ((v >> 5) & 0xf) - 1; in file_fmtdate()
321 tm.tm_year = (v >> 9) + 80; in file_fmtdate()
323 if (strftime(buf, bsize, "%a, %b %d %Y", &tm) == 0) in file_fmtdate()
335 struct tm tm; in file_fmttime() local
337 memset(&tm, 0, sizeof(tm)); in file_fmttime()
338 tm.tm_sec = (v & 0x1f) * 2; in file_fmttime()
339 tm.tm_min = ((v >> 5) & 0x3f); in file_fmttime()
340 tm.tm_hour = (v >> 11); in file_fmttime()
342 if (strftime(buf, bsize, "%T", &tm) == 0) in file_fmttime()