| /netbsd-src/external/apache2/llvm/dist/libcxx/docs/DesignDocs/ |
| H A D | ExperimentalFeatures.rst | 26 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 will be removed … 148 Parallelism TS `V1 <https://wg21.link/N4507>`__ and `V2 <https://wg21.link/N4706>`__ 150 Some (most) of the Parallelism TS was accepted for C++17. [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MipsAsmPrinter.cpp | 189 MipsTargetStreamer &TS = getTargetStreamer(); in emitInstruction() local 191 TS.forbidModuleDirective(); in emitInstruction() 368 MipsTargetStreamer &TS = getTargetStreamer(); in printSavedRegsBitmask() local 370 TS.emitMask(CPUBitmask, CPUTopSavedRegOff); in printSavedRegsBitmask() 373 TS.emitFMask(FPUBitmask, FPUTopSavedRegOff); in printSavedRegsBitmask() 402 MipsTargetStreamer &TS = getTargetStreamer(); in emitFunctionEntryLabel() local 410 TS.emitDirectiveSetMicroMips(); in emitFunctionEntryLabel() 411 TS.setUsesMicroMips(); in emitFunctionEntryLabel() 412 TS.updateABIInfo(*Subtarget); in emitFunctionEntryLabel() 414 TS.emitDirectiveSetNoMicroMips(); in emitFunctionEntryLabel() [all …]
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
| H A D | xray_tsc.h | 69 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 D | xray_basic_logging.cc | 309 timespec TS; in basicLoggingHandleArg0EmulateTSC() local 310 int result = clock_gettime(CLOCK_REALTIME, &TS); in basicLoggingHandleArg0EmulateTSC() 313 TS = {0, 0}; in basicLoggingHandleArg0EmulateTSC() 316 return TS.tv_sec * NanosecondsPerSecond + TS.tv_nsec; in basicLoggingHandleArg0EmulateTSC() 329 timespec TS; in basicLoggingHandleArg1EmulateTSC() local 330 int result = clock_gettime(CLOCK_REALTIME, &TS); in basicLoggingHandleArg1EmulateTSC() 333 TS = {0, 0}; in basicLoggingHandleArg1EmulateTSC() 336 return TS.tv_sec * NanosecondsPerSecond + TS.tv_nsec; in basicLoggingHandleArg1EmulateTSC()
|
| /netbsd-src/external/mit/expat/dist/tests/ |
| H A D | xmltest.sh | 58 TS="$PWD/tests/" 120 cd "$TS/xmlconf" 130 cd "$TS/xmlconf/$xmldir" 140 cd "$TS/xmlconf/oasis" 152 cd "$TS/xmlconf" 160 cd "$TS/xmlconf/$xmldir" 167 cd "$TS/xmlconf/oasis"
|
| /netbsd-src/external/cddl/osnet/dev/dtrace/x86/ |
| H A D | dis_tables.c | 304 #define TS(name, amode) {TERM, amode, name, 1, 0, 0, 0, 0, 0} macro 324 #define TS(name, amode) {TERM, amode, name, 1, 0, 0, 0, 0} macro 344 #define TS(name, amode) {TERM, amode, 0, 0, 0, 0, 0} macro 364 #define TS(name, amode) {TERM, amode, 0, 0, 0, 0} macro 557 /* [4] */ TS("bt",MIb), TS("bts",MIb), TS("btr",MIb), TS("btc",MIb), 1294 /* [B8] */ TS("popcnt",MRw), INVALID, INVALID, INVALID, 1295 /* [BC] */ TNSZ("tzcnt",MRw,5), TS("lzcnt",MRw), INVALID, INVALID, 1405 TS("movbe",MOVBE), 1409 /* [00] */ TS("crc32",CRC32), 1410 TS("movbe",MOVBE), [all …]
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/src/filesystem/ |
| H A D | filesystem_common.h | 463 TimeSpec TS = {st.st_mtime, 0}; 464 return TS; 467 TimeSpec TS = {st.st_atime, 0}; 468 return TS; 472 TimeSpec TS = {st.st_mtime, st.st_mtime_n}; 473 return TS; 476 TimeSpec TS = {st.st_atime, st.st_atime_n}; 477 return TS; 498 inline bool posix_utimes(const path& p, std::array<TimeSpec, 2> const& TS, 500 TimeVal ConvertedTS[2] = {make_timeval(TS[0]), make_timeval(TS[1])}; [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| H A D | ClangOpcodesEmitter.cpp | 116 Enumerate(R, N, [this, R, &OS, &N](ArrayRef<Record *> TS, const Twine &ID) { in EmitInterp() argument 132 PrintTypes(OS, TS); in EmitInterp() 206 Enumerate(R, N, [&OS, &Args](ArrayRef<Record *> TS, const Twine &ID) { in EmitProto() argument 267 llvm::SmallVector<Record *, 2> TS; in EmitGroup() local 268 Rec = [this, &Rec, &OS, Types, &Args, R, &TS, N](size_t I, const Twine &ID) { in EmitGroup() 277 PrintTypes(OS, TS); in EmitGroup() 298 TS.push_back(Case); in EmitGroup() 300 TS.pop_back(); in EmitGroup() 322 Enumerate(R, N, [this, R, &N, &OS](ArrayRef<Record *> TS, const Twine &ID) { in EmitEval() argument 333 PrintTypes(OS, TS); in EmitEval()
|
| H A D | SveEmitter.cpp | 67 TypeSpec TS; member in __anon47288a980111::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 …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/ |
| H A D | llvm-jitlink-elf.cpp | 122 if (auto TS = getELFGOTTarget(G, Sym->getBlock())) in registerELFGraphInfo() local 123 FileInfo.GOTEntryInfos[TS->getName()] = {Sym->getSymbolContent(), in registerELFGraphInfo() 126 return TS.takeError(); in registerELFGraphInfo() 134 if (auto TS = getELFStubTarget(G, Sym->getBlock())) in registerELFGraphInfo() local 135 FileInfo.StubInfos[TS->getName()] = {Sym->getSymbolContent(), in registerELFGraphInfo() 138 return TS.takeError(); in registerELFGraphInfo()
|
| H A D | llvm-jitlink-macho.cpp | 120 if (auto TS = getMachOGOTTarget(G, Sym->getBlock())) in registerMachOGraphInfo() local 121 FileInfo.GOTEntryInfos[TS->getName()] = {Sym->getSymbolContent(), in registerMachOGraphInfo() 124 return TS.takeError(); in registerMachOGraphInfo() 131 if (auto TS = getMachOStubTarget(G, Sym->getBlock())) in registerMachOGraphInfo() local 132 FileInfo.StubInfos[TS->getName()] = {Sym->getSymbolContent(), in registerMachOGraphInfo() 135 return TS.takeError(); in registerMachOGraphInfo()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/util/ |
| H A D | libcrypto.num | 7 TS_MSG_IMPRINT_free 7 1_1_0 EXIST::FUNCTION:TS 9 TS_RESP_CTX_new 9 1_1_0 EXIST::FUNCTION:TS 13 i2d_ESS_ISSUER_SERIAL 13 1_1_0 EXIST::FUNCTION:TS 23 TS_REQ_get_ext_count 23 1_1_0 EXIST::FUNCTION:TS 90 TS_REQ_get_ext_by_NID 90 1_1_0 EXIST::FUNCTION:TS 113 i2d_TS_MSG_IMPRINT 113 1_1_0 EXIST::FUNCTION:TS 158 TS_VERIFY_CTX_set_store 159 1_1_0 EXIST::FUNCTION:TS 190 TS_TST_INFO_new 191 1_1_0 EXIST::FUNCTION:TS 281 TS_REQ_free 282 1_1_0 EXIST::FUNCTION:TS 325 d2i_ESS_SIGNING_CERT 326 1_1_0 EXIST::FUNCTION:TS [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/ |
| H A D | xray-stacks.cpp | 365 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 …]
|
| /netbsd-src/sys/arch/sandpoint/ |
| H A D | README.NAS | 14 re.11 satalink.12/13 TeraStation Pro TS-TGL v1 23 wm.15 satalink.13 QNAP TS-100/TS-101(V1.02) 24 re.15 satalink.13 QNAP TS-101(V200), QNAP TS-201, LevelOne FNS-5000B
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/ |
| H A D | qttest2_de.ts | 1 <!DOCTYPE TS><TS> 24 </TS>
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | LLVMConventionsChecker.cpp | 82 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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64AsmPrinter.cpp | 238 if (auto *TS = static_cast<AArch64TargetStreamer *>( in emitStartOfAsmFile() local 240 TS->emitNoteSection(Flags); in emitStartOfAsmFile() 867 auto *TS = in emitFunctionEntryLabel() local 869 TS->emitDirectiveVariantPCS(CurrentFnSym); in emitFunctionEntryLabel() 1148 AArch64TargetStreamer *TS = in emitInstruction() local 1387 TS->EmitARM64WinCFIAllocStack(MI->getOperand(0).getImm()); in emitInstruction() 1391 TS->EmitARM64WinCFISaveFPLR(MI->getOperand(0).getImm()); in emitInstruction() 1397 TS->EmitARM64WinCFISaveFPLRX(-MI->getOperand(0).getImm()); in emitInstruction() 1401 TS->EmitARM64WinCFISaveReg(MI->getOperand(0).getImm(), in emitInstruction() 1408 TS->EmitARM64WinCFISaveRegX(MI->getOperand(0).getImm(), in emitInstruction() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/ |
| H A D | simd | 26 * This is a TS C++ Library header. 38 /** @defgroup par-ts Parallelism TS 44 * - ISO/IEC TS 19570:2015 C++ Extensions for Parallelism 45 * - ISO/IEC TS 19570:2018 C++ Extensions for Parallelism, Version 2
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/ |
| H A D | priclass_example.txt | 46 TS 73 reason, the RT class trumps both TS and IA. I created these events by 76 The TS time sharing class is the default scheduling class for the processes
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Examples/ |
| H A D | priclass_example.txt | 46 TS 73 reason, the RT class trumps both TS and IA. I created these events by 76 The TS time sharing class is the default scheduling class for the processes
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 407 CXXTryStmt *TS = cast<CXXTryStmt>(S); in BuildScopeInformation() local 413 TS->getSourceRange().getBegin())); in BuildScopeInformation() 414 if (Stmt *TryBlock = TS->getTryBlock()) in BuildScopeInformation() 419 for (unsigned I = 0, E = TS->getNumHandlers(); I != E; ++I) { in BuildScopeInformation() 420 CXXCatchStmt *CS = TS->getHandler(I); in BuildScopeInformation() 432 SEHTryStmt *TS = cast<SEHTryStmt>(S); in BuildScopeInformation() local 438 TS->getSourceRange().getBegin())); in BuildScopeInformation() 439 if (Stmt *TryBlock = TS->getTryBlock()) in BuildScopeInformation() 444 if (SEHExceptStmt *Except = TS->getExceptHandler()) { in BuildScopeInformation() 451 } else if (SEHFinallyStmt *Finally = TS->getFinallyHandler()) { in BuildScopeInformation()
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| H A D | kirkwood-ts219-6281.dts | 29 /* 0: TS-11x, 1: TS-21x */
|
| H A D | kirkwood-ts219-6282.dts | 29 /* 0: TS-11x, 1: TS-21x */
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLTypes.cpp | 85 virtual CVType toCodeViewRecord(AppendingTypeTableBuilder &TS) const = 0; 99 CVType toCodeViewRecord(AppendingTypeTableBuilder &TS) const override { in toCodeViewRecord() 100 TS.writeLeafType(Record); in toCodeViewRecord() 101 return CVType(TS.records().back()); in toCodeViewRecord() 111 CVType toCodeViewRecord(AppendingTypeTableBuilder &TS) const override; 497 AppendingTypeTableBuilder &TS) const { in toCodeViewRecord() 503 TS.insertRecord(CRB); in toCodeViewRecord() 504 return CVType(TS.records().back()); in toCodeViewRecord() 804 AppendingTypeTableBuilder TS(Alloc); in toDebugT() local 807 CVType T = Leaf.Leaf->toCodeViewRecord(TS); in toDebugT() [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/gnulib/import/m4/ |
| H A D | extensions.m4 | 104 /* Enable extensions specified by ISO/IEC TS 18661-5:2014. */ 108 /* Enable extensions specified by ISO/IEC TS 18661-1:2014. */ 112 /* Enable extensions specified by ISO/IEC TS 18661-2:2015. */ 116 /* Enable extensions specified by ISO/IEC TS 18661-4:2015. */ 120 /* Enable extensions specified by ISO/IEC TS 18661-3:2015. */
|