| /freebsd-14.2/bin/sh/tests/parameters/ |
| H A D | pwd2.0 | 7 TP=$(pwd) 11 [ "$PWD" = "$TP/link" ] 12 [ "$(pwd)" = "$TP/link" ] 13 [ "$(pwd -P)" = "$TP/test1" ] 14 [ "$(${SH} -c pwd)" = "$TP/link" ] 15 [ "$(${SH} -c pwd\ -P)" = "$TP/test1" ] 17 [ "$(pwd)" = "$TP" ] 19 [ "$PWD" = "$TP/test1" ] 20 [ "$(pwd)" = "$TP/test1" ] 21 [ "$(pwd -P)" = "$TP/test1" ] [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | LazyReexports.h | 44 TrampolinePool *TP); 70 void setTrampolinePool(TrampolinePool &TP) { this->TP = &TP; } in setTrampolinePool() argument 80 TrampolinePool *TP = nullptr; variable 95 auto TP = LocalTrampolinePool<ORCABI>::Create( in init() local 103 if (!TP) in init() 104 return TP.takeError(); in init() 106 this->TP = std::move(*TP); in init() 107 setTrampolinePool(*this->TP); in init() 111 std::unique_ptr<TrampolinePool> TP; variable
|
| H A D | IndirectionUtils.h | 218 JITCompileCallbackManager(std::unique_ptr<TrampolinePool> TP, in JITCompileCallbackManager() argument 221 : TP(std::move(TP)), ES(ES), in JITCompileCallbackManager() 225 void setTrampolinePool(std::unique_ptr<TrampolinePool> TP) { in setTrampolinePool() argument 226 this->TP = std::move(TP); in setTrampolinePool() 231 std::unique_ptr<TrampolinePool> TP; variable 265 auto TP = LocalTrampolinePool<ORCABI>::Create( in LocalJITCompileCallbackManager() local 271 if (!TP) { in LocalJITCompileCallbackManager() 272 Err = TP.takeError(); in LocalJITCompileCallbackManager() 276 setTrampolinePool(std::move(*TP)); in LocalJITCompileCallbackManager()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | BalancedPartitioning.cpp | 83 std::optional<BPThreadPool> TP; in run() local 87 TP.emplace(TheThreadPool); in run() 95 auto BisectTask = [=, &TP]() { in run() 98 if (TP) { in run() 99 TP->async(std::move(BisectTask)); in run() 100 TP->wait(); in run() 149 auto LeftRecTask = [=, &TP]() { in bisect() 150 bisect(LeftNodes, RecDepth + 1, LeftBucket, Offset, TP); in bisect() 152 auto RightRecTask = [=, &TP]() { in bisect() 157 TP->async(std::move(LeftRecTask)); in bisect() [all …]
|
| H A D | Chrono.cpp | 25 static inline struct tm getStructTM(TimePoint<> TP) { in getStructTM() argument 27 std::time_t OurTime = toTimeT(TP); in getStructTM() 43 static inline struct tm getStructTMUtc(UtcTime<> TP) { in getStructTMUtc() argument 45 std::time_t OurTime = toTimeT(TP); in getStructTMUtc() 61 raw_ostream &operator<<(raw_ostream &OS, TimePoint<> TP) { in operator <<() argument 62 struct tm LT = getStructTM(TP); in operator <<() 67 long((TP.time_since_epoch() % std::chrono::seconds(1)) in operator <<()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Unix.h | 87 inline struct timespec toTimeSpec(TimePoint<> TP) { in toTimeSpec() argument 91 RetVal.tv_sec = toTimeT(TP); in toTimeSpec() 92 RetVal.tv_nsec = (TP.time_since_epoch() % seconds(1)).count(); in toTimeSpec() 97 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) { in toTimeVal() argument 101 RetVal.tv_sec = toTimeT(TP); in toTimeVal() 102 RetVal.tv_usec = (TP.time_since_epoch() % seconds(1)).count(); in toTimeVal()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Chrono.h | 50 inline std::time_t toTimeT(TimePoint<> TP) { in toTimeT() argument 53 time_point_cast<system_clock::time_point::duration>(TP)); in toTimeT() 57 inline std::time_t toTimeT(UtcTime<> TP) { in toTimeT() argument 60 duration_cast<seconds>(TP.time_since_epoch()))); in toTimeT() 80 raw_ostream &operator<<(raw_ostream &OS, sys::TimePoint<> TP); 81 raw_ostream &operator<<(raw_ostream &OS, sys::UtcTime<> TP); 93 static void format(const sys::TimePoint<> &TP, llvm::raw_ostream &OS, 98 static void format(const sys::UtcTime<std::chrono::seconds> &TP,
|
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CodeGenDAGPatterns.cpp | 388 if (TP.hasError()) in forceArbitrary() 407 if (TP.hasError()) in EnforceInteger() 417 if (TP.hasError()) in EnforceFloatingPoint() 427 if (TP.hasError()) in EnforceScalar() 437 if (TP.hasError()) in EnforceVector() 486 if (TP.hasError()) in EnforceSmallerThan() 606 if (TP.hasError()) in EnforceVectorEltTypeIs() 658 if (TP.hasError()) in EnforceVectorSubVectorTypeIs() 726 if (TP.hasError()) in EnforceSameNumElts() 777 if (TP.hasError()) in EnforceSameSize() [all …]
|
| H A D | CodeGenDAGPatterns.h | 260 TypeInfer(TreePattern &T) : TP(T) {} in TypeInfer() 356 TreePattern &TP; member 415 TreePattern &TP) const; 832 void InlinePatternFragments(TreePattern &TP, 845 TreePattern &TP); 847 TreePattern &TP); 849 TreePattern &TP); 858 bool ContainsUnresolvedType(TreePattern &TP) const; 997 TP.getInfer().expandOverloads(VTS); in UpdateNodeType() 1005 TP.getInfer().expandOverloads(VTS); in UpdateNodeType() [all …]
|
| H A D | DAGISelMatcherEmitter.cpp | 138 TreePattern *TP = Usage.first; in MatcherTableEmitter() local 139 TreePredicateFn Pred(TP); in MatcherTableEmitter() 140 NodePredicatesByCodeToRun[Pred.getCodeToRunOnSDNode()].push_back(TP); in MatcherTableEmitter() 151 for (TreePattern *TP : TPs) in MatcherTableEmitter() 152 Uses += PredicateUsage[TP]; in MatcherTableEmitter() 162 TreePattern *TP = Predicate.first; in MatcherTableEmitter() local 163 if (TreePredicateFn(TP).usesOperands()) in MatcherTableEmitter() 164 NodePredicatesWithOperands.push_back(TP); in MatcherTableEmitter() 166 NodePredicates.push_back(TP); in MatcherTableEmitter()
|
| H A D | DAGISelMatcherGen.cpp | 179 TreePattern &TP = *CGP.pf_begin()->second; in InferPossibleTypes() local 183 MadeChange = PatWithNoTypes->ApplyTypeConstraints(TP, in InferPossibleTypes() 536 TreePattern *TP = Pred.Fn.getOrigPatFragRecord(); in EmitMatchCode() local 537 for (unsigned i = 0; i < TP->getNumArgs(); ++i) { in EmitMatchCode() 539 ("pred:" + Twine(Pred.Scope) + ":" + TP->getArgName(i)).str(); in EmitMatchCode()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/mtd/partitions/ |
| H A D | tplink,safeloader-partitions.yaml | 7 title: TP-Link SafeLoader partitions 10 TP-Link home routers store various data on flash (e.g. bootloader, 14 Flash space layout of TP-Link devices is stored on flash itself using 15 a custom ASCII-based format. That format was first found in TP-Link
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | LazyReexports.cpp | 21 TrampolinePool *TP) in LazyCallThroughManager() argument 22 : ES(ES), ErrorHandlerAddr(ErrorHandlerAddr), TP(TP) {} in LazyCallThroughManager() 27 assert(TP && "TrampolinePool not set"); in getCallThroughTrampoline() 30 auto Trampoline = TP->getTrampoline(); in getCallThroughTrampoline()
|
| H A D | EPCIndirectionUtils.cpp | 278 if (TP) in cleanup() 280 static_cast<EPCTrampolinePool &>(*TP).deallocatePool()); in cleanup() 324 if (!TP) in getTrampolinePool() 325 TP = std::make_unique<EPCTrampolinePool>(*this); in getTrampolinePool() 326 return *TP; in getTrampolinePool()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ |
| H A D | RecursiveSymbolVisitor.h | 101 if (const Type *TP = Loc.getTypePtr()) { in VisitTypeLoc() local 102 if (TP->getTypeClass() == clang::Type::Record) in VisitTypeLoc() 103 return visit(TP->getAsCXXRecordDecl(), TypeBeginLoc, TypeEndLoc); in VisitTypeLoc()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ObjCContainersASTChecker.cpp | 48 const Type *TP = T.getTypePtr(); in hasPointerToPointerSizedType() local 49 QualType PointeeT = TP->getPointeeType(); in hasPointerToPointerSizedType() 62 if (const Type *TElem = TP->getArrayElementTypeNoTypeQual()) in hasPointerToPointerSizedType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Windows/ |
| H A D | Memory.inc | 76 TOKEN_PRIVILEGES TP{}; 77 TP.PrivilegeCount = 1; 78 TP.Privileges[0].Luid = Luid; 79 TP.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; 80 if (!AdjustTokenPrivileges(Token, FALSE, &TP, 0, 0, 0)) {
|
| /freebsd-14.2/sys/dev/cxgbe/firmware/ |
| H A D | t4fw_cfg.txt | 31 # TP number of RX channels (0 = auto) 37 # TP number of TX channels (0 = auto) 40 # TP OFLD MTUs
|
| H A D | t6fw_cfg_hashfilter.txt | 32 # TP number of RX channels (0 = auto) 38 # TP number of TX channels (0 = auto) 41 # TP OFLD MTUs
|
| H A D | t5fw_cfg.txt | 58 # TP number of RX channels (0 = auto) 64 # TP number of TX channels (0 = auto) 67 # TP OFLD MTUs
|
| H A D | t6fw_cfg.txt | 32 # TP number of RX channels (0 = auto) 38 # TP number of TX channels (0 = auto) 41 # TP OFLD MTUs
|
| H A D | t5fw_cfg_hashfilter.txt | 58 # TP number of RX channels (0 = auto) 64 # TP number of TX channels (0 = auto) 67 # TP OFLD MTUs
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/Windows/ |
| H A D | WindowsSupport.h | 225 inline FILETIME toFILETIME(TimePoint<> TP) { in toFILETIME() argument 227 TimeInteger.QuadPart = TP.time_since_epoch().count() / 100; in toFILETIME()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Index/ |
| H A D | IndexDecl.cpp | 698 for (const NamedDecl *TP : *Params) { in indexTemplateParameters() 700 IndexCtx.handleDecl(TP); in indexTemplateParameters() 701 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(TP)) { in indexTemplateParameters() 707 } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(TP)) { in indexTemplateParameters() 711 } else if (const auto *TTPD = dyn_cast<TemplateTemplateParmDecl>(TP)) { in indexTemplateParameters() 714 TP->getLexicalDeclContext()); in indexTemplateParameters()
|
| /freebsd-14.2/contrib/file/magic/Magdir/ |
| H A D | tplink | 9 # Note: called "TP-Link router firmware (v1)" by TrID 36 # vendor_name[24] like OpenWrt or TP-LINK Technologies
|