Lines Matching refs:tl
82 struct tm tl;
85 if (localtime_s(&tl, &time) != 0) {
89 if (localtime_r(&time, &tl) == nullptr) {
93 out << tl.tm_zone << " ";
97 out << (tl.tm_year + TM_YEAR_BASE) << "-";
100 out << setw(DT_WIDTH) << (tl.tm_mon + 1) << "-" << setw(DT_WIDTH) << tl.tm_mday << " ";
101 out << setw(DT_WIDTH) << tl.tm_hour << ":" << setw(DT_WIDTH) << tl.tm_min << ":";
102 out << setw(DT_WIDTH) << tl.tm_sec;