Searched refs:TDS (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/contrib/llvm-project/compiler-rt/lib/orc/
H A Delfnix_platform.cpp443 auto TDS =
445 if (!TDS) {
446 __orc_rt_log_error(toString(TDS.takeError()).c_str());
450 auto &Allocated = AllocatedSections[TDS->first];
452 Allocated = std::make_unique<char[]>(TDS->second);
453 memcpy(Allocated.get(), TDS->first, TDS->second);
455 size_t ThreadDataDelta = ThreadData - TDS->first;
456 assert(ThreadDataDelta <= TDS->second && "ThreadData outside section bounds");
H A Dmacho_platform.cpp1304 auto TDS =
1306 if (!TDS) {
1307 __orc_rt_log_error(toString(TDS.takeError()).c_str());
1311 auto &Allocated = AllocatedSections[TDS->first];
1313 Allocated = std::make_unique<char[]>(TDS->second);
1314 memcpy(Allocated.get(), TDS->first, TDS->second);
1317 size_t ThreadDataDelta = ThreadData - TDS->first;
1318 assert(ThreadDataDelta <= TDS->second && "ThreadData outside section bounds");
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp666 time_t TDS = Obj->getTimeDateStamp(); local
668 strftime(FormattedTime, 20, "%Y-%m-%d %H:%M:%S", gmtime(&TDS));
772 time_t TDS = D.TimeDateStamp; local
773 strftime(FormattedTime, 20, "%Y-%m-%d %H:%M:%S", gmtime(&TDS));
981 time_t TDS = Conf->TimeDateStamp; local
982 strftime(FormattedTime, 20, "%Y-%m-%d %H:%M:%S", gmtime(&TDS));
989 W.printHex("TimeDateStamp", FormattedTime, TDS);
2050 time_t TDS = time_t(Table.TimeDateStamp); local
2051 strftime(FormattedTime, 20, "%Y-%m-%d %H:%M:%S", gmtime(&TDS));

Completed in 124 milliseconds