Home
last modified time | relevance | path

Searched refs:TS (Results 1 – 25 of 153) sorted by relevance

1234567

/openbsd-src/gnu/llvm/libcxx/docs/DesignDocs/
H A DExperimentalFeatures.rst26 The "end game" of a Technical Specification (TS) is to have the features in
27 there added to a future version of the C++ Standard. When this happens, the TS
28 can be retired. Sometimes, only part of at TS is added to the standard, and
29 the rest of the features may be incorporated into the next version of the TS.
63 Library Fundamentals TS `V1 <https://wg21.link/N4480>`__ and `V2 <https://wg21.link/N4617>`__
143 `FileSystem TS <https://wg21.link/N4100>`__
145 The FileSystem TS was accepted (in totality) for C++17.
146 The FileSystem TS implementation was shipped in namespace ``std`` in LLVM 7.0, and was
149 Parallelism TS `V1 <https://wg21.link/N4507>`__ and `V2 <https://wg21.link/N4706>`__
151 Some (most) of the Parallelism TS was accepted for C++17.
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/xray/
H A Dxray_tsc.h69 timespec TS; in readTSC() local
70 int result = clock_gettime(CLOCK_REALTIME, &TS); in readTSC()
73 TS.tv_sec = 0; in readTSC()
74 TS.tv_nsec = 0; in readTSC()
77 return TS.tv_sec * NanosecondsPerSecond + TS.tv_nsec; in readTSC()
H A Dxray_basic_logging.cpp308 timespec TS; in basicLoggingHandleArg0EmulateTSC() local
309 int result = clock_gettime(CLOCK_REALTIME, &TS); in basicLoggingHandleArg0EmulateTSC()
312 TS = {0, 0}; in basicLoggingHandleArg0EmulateTSC()
315 return TS.tv_sec * NanosecondsPerSecond + TS.tv_nsec; in basicLoggingHandleArg0EmulateTSC()
328 timespec TS; in basicLoggingHandleArg1EmulateTSC() local
329 int result = clock_gettime(CLOCK_REALTIME, &TS); in basicLoggingHandleArg1EmulateTSC()
332 TS = {0, 0}; in basicLoggingHandleArg1EmulateTSC()
335 return TS.tv_sec * NanosecondsPerSecond + TS.tv_nsec; in basicLoggingHandleArg1EmulateTSC()
/openbsd-src/gnu/llvm/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp188 MipsTargetStreamer &TS = getTargetStreamer(); in emitInstruction() local
190 TS.forbidModuleDirective(); in emitInstruction()
444 MipsTargetStreamer &TS = getTargetStreamer(); in printSavedRegsBitmask() local
446 TS.emitMask(CPUBitmask, CPUTopSavedRegOff); in printSavedRegsBitmask()
449 TS.emitFMask(FPUBitmask, FPUTopSavedRegOff); in printSavedRegsBitmask()
478 MipsTargetStreamer &TS = getTargetStreamer(); in emitFunctionEntryLabel() local
486 TS.emitDirectiveSetMicroMips(); in emitFunctionEntryLabel()
487 TS.setUsesMicroMips(); in emitFunctionEntryLabel()
488 TS.updateABIInfo(*Subtarget); in emitFunctionEntryLabel()
490 TS.emitDirectiveSetNoMicroMips(); in emitFunctionEntryLabel()
[all …]
/openbsd-src/lib/libexpat/tests/
H A Dxmltest.sh58 TS="$PWD/tests/"
119 cd "$TS/xmlconf"
129 cd "$TS/xmlconf/$xmldir"
139 cd "$TS/xmlconf/oasis"
151 cd "$TS/xmlconf"
159 cd "$TS/xmlconf/$xmldir"
166 cd "$TS/xmlconf/oasis"
/openbsd-src/regress/usr.bin/mandoc/man/TS/
H A Dbreak.out_lint1 mandoc: break.in:7:2: WARNING: line scope broken: TS breaks TP
2 mandoc: break.in:14:2: WARNING: line scope broken: TS breaks SH
3 mandoc: break.in:21:2: WARNING: line scope broken: TS breaks SS
4 mandoc: break.in:28:2: WARNING: line scope broken: TS breaks B
/openbsd-src/gnu/llvm/libcxx/src/filesystem/
H A Dfilesystem_common.h471 TimeSpec TS = {st.st_mtime, 0};
472 return TS;
475 TimeSpec TS = {st.st_atime, 0};
476 return TS;
480 TimeSpec TS = {st.st_mtime, st.st_mtime_n};
481 return TS;
484 TimeSpec TS = {st.st_atime, st.st_atime_n};
485 return TS;
506 inline bool posix_utimes(const path& p, std::array<TimeSpec, 2> const& TS,
508 TimeVal ConvertedTS[2] = {make_timeval(TS[0]), make_timeval(TS[1])};
[all …]
/openbsd-src/gnu/llvm/compiler-rt/include/fuzzer/
H A DFuzzedDataProvider.h97 template <typename TS, typename TU> TS ConvertUnsignedToSigned(TU value);
377 template <typename TS, typename TU>
378 TS FuzzedDataProvider::ConvertUnsignedToSigned(TU value) { in ConvertUnsignedToSigned()
379 static_assert(sizeof(TS) == sizeof(TU), "Incompatible data types."); in ConvertUnsignedToSigned()
384 if (std::numeric_limits<TS>::is_modulo) in ConvertUnsignedToSigned()
385 return static_cast<TS>(value); in ConvertUnsignedToSigned()
389 if (value <= std::numeric_limits<TS>::max()) { in ConvertUnsignedToSigned()
390 return static_cast<TS>(value); in ConvertUnsignedToSigned()
392 constexpr auto TS_min = std::numeric_limits<TS>::min(); in ConvertUnsignedToSigned()
393 return TS_min + static_cast<TS>(value - TS_min); in ConvertUnsignedToSigned()
/openbsd-src/gnu/llvm/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink-elf.cpp121 if (auto TS = getELFGOTTarget(G, Sym->getBlock())) in registerELFGraphInfo() local
122 FileInfo.GOTEntryInfos[TS->getName()] = { in registerELFGraphInfo()
125 return TS.takeError(); in registerELFGraphInfo()
133 if (auto TS = getELFStubTarget(G, Sym->getBlock())) in registerELFGraphInfo() local
134 FileInfo.StubInfos[TS->getName()] = {Sym->getSymbolContent(), in registerELFGraphInfo()
137 return TS.takeError(); in registerELFGraphInfo()
H A Dllvm-jitlink-coff.cpp119 if (auto TS = getCOFFGOTTarget(G, Sym->getBlock())) in registerCOFFGraphInfo() local
120 FileInfo.GOTEntryInfos[TS->getName()] = { in registerCOFFGraphInfo()
123 return TS.takeError(); in registerCOFFGraphInfo()
131 if (auto TS = getCOFFStubTarget(G, Sym->getBlock())) in registerCOFFGraphInfo() local
132 FileInfo.StubInfos[TS->getName()] = {Sym->getSymbolContent(), in registerCOFFGraphInfo()
135 return TS.takeError(); in registerCOFFGraphInfo()
H A Dllvm-jitlink-macho.cpp119 if (auto TS = getMachOGOTTarget(G, Sym->getBlock())) in registerMachOGraphInfo() local
120 FileInfo.GOTEntryInfos[TS->getName()] = { in registerMachOGraphInfo()
123 return TS.takeError(); in registerMachOGraphInfo()
130 if (auto TS = getMachOStubTarget(G, Sym->getBlock())) in registerMachOGraphInfo() local
131 FileInfo.StubInfos[TS->getName()] = {Sym->getSymbolContent(), in registerMachOGraphInfo()
134 return TS.takeError(); in registerMachOGraphInfo()
/openbsd-src/regress/usr.bin/mandoc/tbl/mod/
H A Dbadfont.out_lint1 mandoc: badfont.in:9:7: WARNING: unknown font, skipping request: TS fX
2 mandoc: badfont.in:10:7: WARNING: unknown font, skipping request: TS fIB
3 mandoc: badfont.in:11:7: WARNING: unknown font, skipping request: TS f.
/openbsd-src/gnu/llvm/clang/utils/TableGen/
H A DClangOpcodesEmitter.cpp116 Enumerate(R, N, [this, R, &OS, &N](ArrayRef<Record *> TS, const Twine &ID) { in EmitInterp() argument
135 PrintTypes(OS, TS); in EmitInterp()
214 Enumerate(R, N, [&OS, &Args](ArrayRef<Record *> TS, const Twine &ID) { in EmitProto() argument
275 llvm::SmallVector<Record *, 2> TS; in EmitGroup() local
276 Rec = [this, &Rec, &OS, Types, &Args, R, &TS, N](size_t I, const Twine &ID) { in EmitGroup()
285 PrintTypes(OS, TS); in EmitGroup()
306 TS.push_back(Case); in EmitGroup()
308 TS.pop_back(); in EmitGroup()
330 Enumerate(R, N, [this, R, &N, &OS](ArrayRef<Record *> TS, const Twine &ID) { in EmitEval() argument
341 PrintTypes(OS, TS); in EmitEval()
H A DSveEmitter.cpp67 TypeSpec TS; member in __anon5066fa640111::SVEType
75 SVEType(TypeSpec TS, char CharMod) in SVEType() argument
76 : TS(TS), Float(false), Signed(true), Immediate(false), Void(false), in SVEType()
80 if (!TS.empty()) in SVEType()
236 std::string replaceTemplatedArgs(std::string Name, TypeSpec TS,
463 for (char I : TS) { in applyTypespec()
853 std::string Intrinsic::replaceTemplatedArgs(std::string Name, TypeSpec TS, in replaceTemplatedArgs() argument
868 T = SVEType(TS, 'd'); in replaceTemplatedArgs()
874 T = SVEType(TS, Proto[C - '0']); in replaceTemplatedArgs()
1032 for (auto TS : TypeSpecs) { in createIntrinsic() local
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dtrusty.cpp80 timespec TS; in getMonotonicTime() local
81 clock_gettime(CLOCK_MONOTONIC, &TS); in getMonotonicTime()
82 return static_cast<u64>(TS.tv_sec) * (1000ULL * 1000 * 1000) + in getMonotonicTime()
83 static_cast<u64>(TS.tv_nsec); in getMonotonicTime()
H A Dlinux.cpp132 timespec TS; in getMonotonicTime() local
133 clock_gettime(CLOCK_MONOTONIC, &TS); in getMonotonicTime()
134 return static_cast<u64>(TS.tv_sec) * (1000ULL * 1000 * 1000) + in getMonotonicTime()
135 static_cast<u64>(TS.tv_nsec); in getMonotonicTime()
/openbsd-src/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-stacks.cpp365 auto &TS = ThreadStackMap[R.TId]; in accountRecord() local
377 if (TS.empty()) { in accountRecord()
379 TS.emplace_back(Root ? Root : createTrieNode(R.TId, R.FuncId, nullptr), in accountRecord()
384 auto &Top = TS.back(); in accountRecord()
394 TS.emplace_back(N, R.TSC); in accountRecord()
398 TS.emplace_back(*I, R.TSC); in accountRecord()
411 if (TS.empty()) { in accountRecord()
418 reverse(TS), [&](const std::pair<StackTrieNode *, uint64_t> &E) { in accountRecord()
422 if (FunctionEntryMatch == TS.rend()) { in accountRecord()
430 for (auto &E : make_range(I, TS.end() - 1)) in accountRecord()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.h32 MCTargetStreamer *TS = OutStreamer->getTargetStreamer(); in getTargetStreamer() local
33 assert(TS && "do not have a target streamer"); in getTargetStreamer()
34 return static_cast<SystemZTargetStreamer *>(TS); in getTargetStreamer()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DLLVMConventionsChecker.cpp82 const TemplateSpecializationType *TS = T->getAs<TemplateSpecializationType>(); in IsStdVector() local
83 if (!TS) in IsStdVector()
86 TemplateName TM = TS->getTemplateName(); in IsStdVector()
96 const TemplateSpecializationType *TS = T->getAs<TemplateSpecializationType>(); in IsSmallVector() local
97 if (!TS) in IsSmallVector()
100 TemplateName TM = TS->getTemplateName(); in IsSmallVector()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DNoInferenceModelRunner.cpp21 for (const auto &TS : Inputs) in NoInferenceModelRunner() local
22 setUpBufferForTensor(Index++, TS, nullptr); in NoInferenceModelRunner()
H A DTrainingLogger.cpp39 for (const auto &TS : FeatureSpecs) in writeHeader() local
40 TS.toJSON(JOS); in writeHeader()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp251 auto *TS = in emitStartOfAsmFile() local
253 TS->emitNoteSection(Flags); in emitStartOfAsmFile()
975 auto *TS = in emitFunctionEntryLabel() local
977 TS->emitDirectiveVariantPCS(CurrentFnSym); in emitFunctionEntryLabel()
1304 AArch64TargetStreamer *TS = in emitInstruction() local
1564 TS->emitARM64WinCFIAllocStack(MI->getOperand(0).getImm()); in emitInstruction()
1568 TS->emitARM64WinCFISaveFPLR(MI->getOperand(0).getImm()); in emitInstruction()
1574 TS->emitARM64WinCFISaveFPLRX(-MI->getOperand(0).getImm()); in emitInstruction()
1578 TS->emitARM64WinCFISaveReg(MI->getOperand(0).getImm(), in emitInstruction()
1585 TS->emitARM64WinCFISaveRegX(MI->getOperand(0).getImm(), in emitInstruction()
[all …]
/openbsd-src/regress/bin/ed/
H A DMakefile6 TS != cd ${TESTDIR} && ls *.t
19 .for t in ${TS:R}
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DJumpDiagnostics.cpp413 CXXTryStmt *TS = cast<CXXTryStmt>(S); in BuildScopeInformation() local
419 TS->getSourceRange().getBegin())); in BuildScopeInformation()
420 if (Stmt *TryBlock = TS->getTryBlock()) in BuildScopeInformation()
425 for (unsigned I = 0, E = TS->getNumHandlers(); I != E; ++I) { in BuildScopeInformation()
426 CXXCatchStmt *CS = TS->getHandler(I); in BuildScopeInformation()
438 SEHTryStmt *TS = cast<SEHTryStmt>(S); in BuildScopeInformation() local
444 TS->getSourceRange().getBegin())); in BuildScopeInformation()
445 if (Stmt *TryBlock = TS->getTryBlock()) in BuildScopeInformation()
450 if (SEHExceptStmt *Except = TS->getExceptHandler()) { in BuildScopeInformation()
457 } else if (SEHFinallyStmt *Finally = TS->getFinallyHandler()) { in BuildScopeInformation()
/openbsd-src/gnu/llvm/libcxx/docs/Helpers/
H A DStyles.rst54 .. |concurrency TS| replace:: :concurrency:`concurrency TS`

1234567