Home
last modified time | relevance | path

Searched refs:TP (Results 1 – 25 of 100) sorted by relevance

1234

/freebsd-14.2/bin/sh/tests/parameters/
H A Dpwd2.07 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 DLazyReexports.h44 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 DIndirectionUtils.h218 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 DBalancedPartitioning.cpp83 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 DChrono.cpp25 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 DUnix.h87 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 DChrono.h50 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 DCodeGenDAGPatterns.cpp388 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 DCodeGenDAGPatterns.h260 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 DDAGISelMatcherEmitter.cpp138 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 DDAGISelMatcherGen.cpp179 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 Dtplink,safeloader-partitions.yaml7 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 DLazyReexports.cpp21 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 DEPCIndirectionUtils.cpp278 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 DRecursiveSymbolVisitor.h101 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 DObjCContainersASTChecker.cpp48 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 DMemory.inc76 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 Dt4fw_cfg.txt31 # TP number of RX channels (0 = auto)
37 # TP number of TX channels (0 = auto)
40 # TP OFLD MTUs
H A Dt6fw_cfg_hashfilter.txt32 # TP number of RX channels (0 = auto)
38 # TP number of TX channels (0 = auto)
41 # TP OFLD MTUs
H A Dt5fw_cfg.txt58 # TP number of RX channels (0 = auto)
64 # TP number of TX channels (0 = auto)
67 # TP OFLD MTUs
H A Dt6fw_cfg.txt32 # TP number of RX channels (0 = auto)
38 # TP number of TX channels (0 = auto)
41 # TP OFLD MTUs
H A Dt5fw_cfg_hashfilter.txt58 # 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 DWindowsSupport.h225 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 DIndexDecl.cpp698 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 Dtplink9 # Note: called "TP-Link router firmware (v1)" by TrID
36 # vendor_name[24] like OpenWrt or TP-LINK Technologies

1234