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

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DUnix.h92 inline struct timespec toTimeSpec(TimePoint<> TP) { argument
96 RetVal.tv_sec = toTimeT(TP);
97 RetVal.tv_nsec = (TP.time_since_epoch() % seconds(1)).count();
102 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) { argument
106 RetVal.tv_sec = toTimeT(TP);
107 RetVal.tv_usec = (TP.time_since_epoch() % seconds(1)).count();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DLazyReexports.h87 std::unique_ptr<TrampolinePool> TP);
91 void setTrampolinePool(std::unique_ptr<TrampolinePool> TP) { argument
92 this->TP = std::move(TP);
105 std::unique_ptr<TrampolinePool> TP; member in class:llvm::orc::LazyCallThroughManager
118 auto TP = LocalTrampolinePool<ORCABI>::Create( local
123 if (!TP)
124 return TP.takeError();
126 setTrampolinePool(std::move(*TP));
H A DIndirectionUtils.h200 JITCompileCallbackManager(std::unique_ptr<TrampolinePool> TP, argument
203 : TP(std::move(TP)), ES(ES),
207 void setTrampolinePool(std::unique_ptr<TrampolinePool> TP) { argument
208 this->TP = std::move(TP);
213 std::unique_ptr<TrampolinePool> TP; member in class:llvm::orc::JITCompileCallbackManager
245 auto TP = LocalTrampolinePool<ORCABI>::Create( local
250 if (!TP) {
251 Err = TP
[all...]
/freebsd-11-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-11-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-11-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-11-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-11-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-11-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
1644 UpdateNodeTypeFromInst(unsigned ResNo, Record *Operand, TreePattern &TP) argument
1980 InlinePatternFragments( TreePatternNodePtr T, TreePattern &TP, std::vector<TreePatternNodePtr> &OutAlternatives) argument
2124 getImplicitType(Record *R, unsigned ResNo, bool NotRegisters, bool Unnamed, TreePattern &TP) argument
2340 emitTooManyOperandsError(TreePattern &TP, StringRef InstName, unsigned Expected, unsigned Actual) argument
2348 emitTooFewOperandsError(TreePattern &TP, StringRef InstName, unsigned Actual) argument
2358 ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) argument
4078 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-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DLazyReexports.cpp23 std::unique_ptr<TrampolinePool> TP)
24 : ES(ES), ErrorHandlerAddr(ErrorHandlerAddr), TP(std::move(TP)) {}
30 auto Trampoline = TP->getTrampoline();
21 LazyCallThroughManager( ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr, std::unique_ptr<TrampolinePool> TP) argument
H A DIndirectionUtils.cpp63 if (auto TrampolineAddr = TP->getTrampoline()) {
/freebsd-11-stable/usr.bin/xlint/lint2/
H A Dchk.c104 TP(sym->s_type)->t_tspec == FUNC &&
105 TP(sym->s_type)->t_proto) {
181 if (TP(sym->s_type)->t_tspec == FUNC)
249 t1 = (tp1 = TP(def->s_type)->t_subt)->t_tspec;
251 tp2 = TP(call->f_type)->t_subt;
306 tp1 = TP(def->s_type);
310 tp2 = TP(sym->s_type);
353 if ((tp1 = TP(def->s_type))->t_tspec != FUNC)
356 } else if (decl != NULL && TP(decl->s_type)->t_proto) {
357 if ((tp1 = TP(dec
[all...]
H A Dlint2.h186 #define TP(idx) (tlst[idx]) macro
H A Demit2.c172 if (TP(sym->s_type)->t_tspec == FUNC) {
184 outtype(TP(sym->s_type));
H A Dread.c624 tp->t_subt = TP(sidx);
628 tp->t_subt = TP(sidx);
646 tp->t_args[i] = TP(sidx);
651 tp->t_subt = TP(sidx);
/freebsd-11-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-11-stable/contrib/ntp/scripts/deprecated/
H A Dhtml2man.in145 print MANOUT "\n.TP 8\n";
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexDecl.cpp679 for (const NamedDecl *TP : *Params) {
681 IndexCtx.handleDecl(TP);
682 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(TP)) {
685 } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(TP)) {
688 } else if (const auto *TTPD = dyn_cast<TemplateTemplateParmDecl>(TP)) {
691 TP->getLexicalDeclContext());
/freebsd-11-stable/contrib/gdb/gdb/
H A Dtarget.h943 #define target_extra_thread_info(TP) \
944 (current_target.to_extra_thread_info (TP))
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTNodeTraverser.h261 for (const auto &TP : *TPL)
262 Visit(TP);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.h317 const DITemplateTypeParameter *TP);

Completed in 192 milliseconds

12