Searched refs:TP (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DUnix.h88 inline struct timespec toTimeSpec(TimePoint<> TP) { argument
92 RetVal.tv_sec = toTimeT(TP);
93 RetVal.tv_nsec = (TP.time_since_epoch() % seconds(1)).count();
98 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) { argument
102 RetVal.tv_sec = toTimeT(TP);
103 RetVal.tv_usec = (TP.time_since_epoch() % seconds(1)).count();
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DLazyReexports.h60 JITTargetAddress ErrorHandlerAddr, TrampolinePool *TP);
71 void setTrampolinePool(TrampolinePool &TP) { this->TP = &TP; } argument
81 TrampolinePool *TP = nullptr; member in class:llvm::orc::LazyCallThroughManager
96 auto TP = LocalTrampolinePool<ORCABI>::Create( local
104 if (!TP)
105 return TP.takeError();
107 this->TP = std::move(*TP);
112 std::unique_ptr<TrampolinePool> TP; member in class:llvm::orc::LocalLazyCallThroughManager
[all...]
H A DIndirectionUtils.h214 JITCompileCallbackManager(std::unique_ptr<TrampolinePool> TP, argument
217 : TP(std::move(TP)), ES(ES),
221 void setTrampolinePool(std::unique_ptr<TrampolinePool> TP) { argument
222 this->TP = std::move(TP);
227 std::unique_ptr<TrampolinePool> TP; member in class:llvm::orc::JITCompileCallbackManager
262 auto TP = LocalTrampolinePool<ORCABI>::Create( local
268 if (!TP) {
269 Err = TP
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DChrono.cpp25 static inline struct tm getStructTM(TimePoint<> TP) { argument
27 std::time_t OurTime = toTimeT(TP);
43 raw_ostream &operator<<(raw_ostream &OS, TimePoint<> TP) { argument
44 struct tm LT = getStructTM(TP);
49 long((TP.time_since_epoch() % std::chrono::seconds(1))
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRecursiveSymbolVisitor.h101 if (const Type *TP = Loc.getTypePtr()) {
102 if (TP->getTypeClass() == clang::Type::Record)
103 return visit(TP->getAsCXXRecordDecl(), TypeBeginLoc, TypeEndLoc);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DChrono.h36 inline std::time_t toTimeT(TimePoint<> TP) { argument
39 time_point_cast<system_clock::time_point::duration>(TP));
59 raw_ostream &operator<<(raw_ostream &OS, sys::TimePoint<> TP);
71 static void format(const sys::TimePoint<> &TP, llvm::raw_ostream &OS,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DLazyReexports.cpp20 ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr, TrampolinePool *TP)
21 : ES(ES), ErrorHandlerAddr(ErrorHandlerAddr), TP(TP) {}
26 assert(TP && "TrampolinePool not set");
29 auto Trampoline = TP->getTrampoline();
19 LazyCallThroughManager( ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr, TrampolinePool *TP) argument
H A DIndirectionUtils.cpp62 if (auto TrampolineAddr = TP->getTrampoline()) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp48 const Type *TP = T.getTypePtr(); local
49 QualType PointeeT = TP->getPointeeType();
62 if (const Type *TElem = TP->getArrayElementTypeNoTypeQual())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DMemory.inc77 TOKEN_PRIVILEGES TP{};
78 TP.PrivilegeCount = 1;
79 TP.Privileges[0].Luid = Luid;
80 TP.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
81 if (!AdjustTokenPrivileges(Token, FALSE, &TP, 0, 0, 0)) {
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h264 TypeInfer(TreePattern &T) : TP(T), ForceMode(0) {}
360 TreePattern &TP; member in struct:llvm::TypeInfer
421 TreePattern &TP) const;
488 bool ApplyTypeConstraints(TreePatternNode *N, TreePattern &TP) const;
716 bool isTypeCompletelyUnknown(unsigned ResNo, TreePattern &TP) const {
823 TreePattern &TP,
829 bool ApplyTypeConstraints(TreePattern &TP, bool NotRegisters);
836 TreePattern &TP);
838 TreePattern &TP);
840 TreePattern &TP);
985 UpdateNodeType(unsigned ResNo, const TypeSetByHwMode &InTy, TreePattern &TP) argument
993 UpdateNodeType(unsigned ResNo, MVT::SimpleValueType InTy, TreePattern &TP) argument
1001 UpdateNodeType(unsigned ResNo, ValueTypeByHwMode InTy, TreePattern &TP) argument
[all...]
H A DCodeGenDAGPatterns.cpp348 if (In.empty() || Out == In || TP.hasError())
357 TP.error("Type contradiction");
364 if (TP.hasError())
383 if (TP.hasError())
393 if (TP.hasError())
403 if (TP.hasError())
413 if (TP.hasError())
423 if (TP.hasError() || !Out.empty())
462 if (TP.hasError())
496 TP
1647 UpdateNodeTypeFromInst(unsigned ResNo, Record *Operand, TreePattern &TP) argument
1983 InlinePatternFragments( TreePatternNodePtr T, TreePattern &TP, std::vector<TreePatternNodePtr> &OutAlternatives) argument
2127 getImplicitType(Record *R, unsigned ResNo, bool NotRegisters, bool Unnamed, TreePattern &TP) argument
2343 emitTooManyOperandsError(TreePattern &TP, StringRef InstName, unsigned Expected, unsigned Actual) argument
2351 emitTooFewOperandsError(TreePattern &TP, StringRef InstName, unsigned Actual) argument
2361 ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) argument
4093 ForceArbitraryInstResultType(TreePatternNode *N, TreePattern &TP) argument
[all...]
H A DDAGISelMatcherGen.cpp174 // TP - Get *SOME* tree pattern, we don't care which. It is only used for
176 TreePattern &TP = *CGP.pf_begin()->second; local
177 TP.getInfer().CodeGen = true;
178 TP.getInfer().ForceMode = ForceMode;
182 MadeChange = PatWithNoTypes->ApplyTypeConstraints(TP,
539 TreePattern *TP = Pred.Fn.getOrigPatFragRecord(); local
540 for (unsigned i = 0; i < TP->getNumArgs(); ++i) {
542 ("pred:" + Twine(Pred.Scope) + ":" + TP->getArgName(i)).str();
H A DDAGISelMatcherEmitter.cpp102 TreePattern *TP = Pred.getOrigPatFragRecord(); local
103 unsigned &Entry = NodePredicateMap[TP];
126 SameCodePreds.push_back(TP);
H A DFastISelEmitter.cpp172 TreePattern *TP = PredFn.getOrigPatFragRecord();
173 ValueTypeByHwMode VVT = TP->getTree(0)->getType(0);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/Windows/
H A DWindowsSupport.h222 inline FILETIME toFILETIME(TimePoint<> TP) { argument
224 TimeInteger.QuadPart = TP.time_since_epoch().count() / 100;
/freebsd-13-stable/contrib/ntp/scripts/deprecated/
H A Dhtml2man.in145 print MANOUT "\n.TP 8\n";
/freebsd-13-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexDecl.cpp684 for (const NamedDecl *TP : *Params) {
686 IndexCtx.handleDecl(TP);
687 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(TP)) {
690 } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(TP)) {
693 } else if (const auto *TTPD = dyn_cast<TemplateTemplateParmDecl>(TP)) {
696 TP->getLexicalDeclContext());
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTNodeTraverser.h268 for (const auto &TP : *TPL)
269 Visit(TP);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.h316 const DITemplateTypeParameter *TP);
H A DDwarfUnit.cpp1040 DIE &Buffer, const DITemplateTypeParameter *TP) {
1044 if (TP->getType())
1045 addType(ParamDIE, TP->getType());
1046 if (!TP->getName().empty())
1047 addString(ParamDIE, dwarf::DW_AT_name, TP->getName());
1048 if (TP->isDefault() && (DD->getDwarfVersion() >= 5))
1039 constructTemplateTypeParameterDIE( DIE &Buffer, const DITemplateTypeParameter *TP) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp246 for (const auto *TP : *TPL) {
247 if (!match(*TP))
/freebsd-13-stable/sys/dev/axgbe/
H A Dxgbe-phy-v2.c752 XGBE_SET_SUP(&pdata->phy, TP);
825 XGBE_SET_SUP(&pdata->phy, TP);
1594 XGBE_SET_LP_ADV(&pdata->phy, TP);
3590 XGBE_SET_SUP(&pdata->phy, TP);
3620 XGBE_SET_SUP(&pdata->phy, TP);
3642 XGBE_SET_SUP(&pdata->phy, TP);
3681 XGBE_SET_SUP(&pdata->phy, TP);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclTemplate.cpp116 const auto *TP = cast<TemplateTemplateParmDecl>(P); local
117 if (TP->isExpandedParameterPack()) {
118 NumRequiredArgs += TP->getNumExpansionTemplateParameters();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp883 for (const TerminatedPath &TP : TerminatedPaths) {
886 if (DT.dominates(ChainBB, TP.Clobber->getBlock()))
887 Clobbers.push_back(TP);

Completed in 295 milliseconds

12