Home
last modified time | relevance | path

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

12345

/src/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 …]
/src/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()
/src/sys/contrib/device-tree/src/arm64/mediatek/
H A Dmt8188-geralt-ciri.dtsi154 "TP",
169 "TP",
171 "TP",
199 "TP",
200 "TP",
205 "TP",
206 "TP",
207 "TP",
208 "TP",
212 "TP",
[all …]
H A Dmt8186-corsola-starmie.dtsi188 gpio-line-names = "TP",
189 "TP",
190 "TP",
275 "TP",
375 "TP",
376 "TP";
H A Dmt8188-geralt.dtsi665 "TP",
680 "TP",
682 "TP",
710 "TP",
711 "TP",
716 "TP",
717 "TP",
718 "TP",
719 "TP",
723 "TP",
[all …]
/src/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()
96 bisect(NodesRange, /*RecDepth=*/0, /*RootBucket=*/1, /*Offset=*/0, TP); in run()
98 if (TP) { in run()
99 TP->async(std::move(BisectTask)); in run()
100 TP->wait(); in run()
115 std::optional<BPThreadPool> &TP) const { in bisect()
149 auto LeftRecTask = [=, &TP]() { in bisect()
150 bisect(LeftNodes, RecDepth + 1, LeftBucket, Offset, TP); 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 <<()
/src/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()
/src/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,
/src/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.cpp366 if (In.empty() || Out == In || TP.hasError()) in MergeInTypeInfo()
375 TP.error("Type contradiction"); in MergeInTypeInfo()
382 if (TP.hasError()) in forceArbitrary()
401 if (TP.hasError()) in EnforceInteger()
411 if (TP.hasError()) in EnforceFloatingPoint()
421 if (TP.hasError()) in EnforceScalar()
431 if (TP.hasError()) in EnforceVector()
441 if (TP.hasError() || !Out.empty()) in EnforceAny()
480 if (TP.hasError()) in EnforceSmallerThan()
525 TP.error("Incompatible types"); in EnforceSmallerThan()
[all …]
H A DCodeGenDAGPatterns.h248 TypeInfer(TreePattern &T) : TP(T) {} in TypeInfer()
341 TreePattern &TP; member
410 TreePattern &TP) const;
477 bool ApplyTypeConstraints(TreePatternNode &N, TreePattern &TP) const;
709 bool isTypeCompletelyUnknown(unsigned ResNo, TreePattern &TP) const { in isTypeCompletelyUnknown() argument
828 void InlinePatternFragments(TreePattern &TP,
834 bool ApplyTypeConstraints(TreePattern &TP, bool NotRegisters);
841 TreePattern &TP);
843 TreePattern &TP);
844 bool UpdateNodeType(unsigned ResNo, ValueTypeByHwMode InTy, TreePattern &TP);
[all …]
/src/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()
/src/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()
/src/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()
/src/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)) {
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeductionGuide.cpp785 for (auto *TP : *AliasTemplate->getTemplateParameters()) { in buildAssociatedConstraints()
792 SemaRef, AliasTemplate->getDeclContext(), TP, Args, in buildAssociatedConstraints()
794 getTemplateParameterDepth(TP) + AdjustDepth); in buildAssociatedConstraints()
812 NamedDecl *TP = F->getTemplateParameters()->getParam(Index); in buildAssociatedConstraints() local
818 SemaRef, F->getDeclContext(), TP, Args, in buildAssociatedConstraints()
820 getTemplateParameterDepth(TP) + AdjustDepth); in buildAssociatedConstraints()
913 for (auto *TP : TemplateParams) { in buildIsDeducibleConstraint() local
920 SemaRef, AliasTemplate->getDeclContext(), TP, Args, in buildIsDeducibleConstraint()
922 getTemplateParameterDepth(TP) + AdjustDepth); in buildIsDeducibleConstraint()
1075 auto *TP = in BuildDeductionGuideForTypeAlias() local
[all …]
/src/contrib/llvm-project/clang/lib/Index/
H A DIndexDecl.cpp701 for (const NamedDecl *TP : *Params) { in indexTemplateParameters()
703 IndexCtx.handleDecl(TP); in indexTemplateParameters()
704 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(TP)) { in indexTemplateParameters()
707 TP->getLexicalDeclContext()); in indexTemplateParameters()
711 } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(TP)) { in indexTemplateParameters()
715 TP->getLexicalDeclContext()); in indexTemplateParameters()
716 } else if (const auto *TTPD = dyn_cast<TemplateTemplateParmDecl>(TP)) { in indexTemplateParameters()
719 TP->getLexicalDeclContext()); in indexTemplateParameters()
/src/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
/src/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp137 TreePattern *TP = Usage.first; in MatcherTableEmitter() local
138 TreePredicateFn Pred(TP); in MatcherTableEmitter()
139 NodePredicatesByCodeToRun[Pred.getCodeToRunOnSDNode()].push_back(TP); in MatcherTableEmitter()
150 for (TreePattern *TP : TPs) in MatcherTableEmitter()
151 Uses += PredicateUsage[TP]; in MatcherTableEmitter()
161 TreePattern *TP = Predicate.first; in MatcherTableEmitter() local
162 if (TreePredicateFn(TP).usesOperands()) in MatcherTableEmitter()
163 NodePredicatesWithOperands.push_back(TP); in MatcherTableEmitter()
165 NodePredicates.push_back(TP); in MatcherTableEmitter()
/src/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()

12345