Home
last modified time | relevance | path

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

1234

/freebsd-12.1/bin/sh/tests/parameters/
H A Dpwd2.08 TP=$(pwd)
12 [ "$PWD" = "$TP/link" ]
13 [ "$(pwd)" = "$TP/link" ]
14 [ "$(pwd -P)" = "$TP/test1" ]
15 [ "$(${SH} -c pwd)" = "$TP/link" ]
16 [ "$(${SH} -c pwd\ -P)" = "$TP/test1" ]
18 [ "$(pwd)" = "$TP" ]
20 [ "$PWD" = "$TP/test1" ]
21 [ "$(pwd)" = "$TP/test1" ]
22 [ "$(pwd -P)" = "$TP/test1" ]
[all …]
/freebsd-12.1/contrib/llvm/lib/Support/Unix/
H A DUnix.h84 inline struct timespec toTimeSpec(TimePoint<> TP) { in toTimeSpec() argument
88 RetVal.tv_sec = toTimeT(TP); in toTimeSpec()
89 RetVal.tv_nsec = (TP.time_since_epoch() % seconds(1)).count(); in toTimeSpec()
94 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) { in toTimeVal() argument
98 RetVal.tv_sec = toTimeT(TP); in toTimeVal()
99 RetVal.tv_usec = (TP.time_since_epoch() % seconds(1)).count(); in toTimeVal()
/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/
H A DLazyReexports.h87 std::unique_ptr<TrampolinePool> TP);
91 void setTrampolinePool(std::unique_ptr<TrampolinePool> TP) { in setTrampolinePool() argument
92 this->TP = std::move(TP); in setTrampolinePool()
105 std::unique_ptr<TrampolinePool> TP; variable
118 auto TP = LocalTrampolinePool<ORCABI>::Create( in init() local
123 if (!TP) in init()
124 return TP.takeError(); in init()
126 setTrampolinePool(std::move(*TP)); in init()
H A DIndirectionUtils.h201 JITCompileCallbackManager(std::unique_ptr<TrampolinePool> TP, in JITCompileCallbackManager() argument
204 : TP(std::move(TP)), ES(ES), in JITCompileCallbackManager()
208 void setTrampolinePool(std::unique_ptr<TrampolinePool> TP) { in setTrampolinePool() argument
209 this->TP = std::move(TP); in setTrampolinePool()
214 std::unique_ptr<TrampolinePool> TP; variable
246 auto TP = LocalTrampolinePool<ORCABI>::Create( in LocalJITCompileCallbackManager() local
251 if (!TP) { in LocalJITCompileCallbackManager()
252 Err = TP.takeError(); in LocalJITCompileCallbackManager()
256 setTrampolinePool(std::move(*TP)); in LocalJITCompileCallbackManager()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DChrono.cpp26 static inline struct tm getStructTM(TimePoint<> TP) { in getStructTM() argument
28 std::time_t OurTime = toTimeT(TP); in getStructTM()
44 raw_ostream &operator<<(raw_ostream &OS, TimePoint<> TP) { in operator <<() argument
45 struct tm LT = getStructTM(TP); in operator <<()
50 long((TP.time_since_epoch() % std::chrono::seconds(1)) in operator <<()
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp358 if (TP.hasError()) in forceArbitrary()
377 if (TP.hasError()) in EnforceInteger()
387 if (TP.hasError()) in EnforceFloatingPoint()
397 if (TP.hasError()) in EnforceScalar()
407 if (TP.hasError()) in EnforceVector()
456 if (TP.hasError()) in EnforceSmallerThan()
561 if (TP.hasError()) in EnforceVectorEltTypeIs()
611 if (TP.hasError()) in EnforceVectorSubVectorTypeIs()
677 if (TP.hasError()) in EnforceSameNumElts()
715 if (TP.hasError()) in EnforceSameSize()
[all …]
H A DCodeGenDAGPatterns.h253 TypeInfer(TreePattern &T) : TP(T), ForceMode(0) {} in TypeInfer()
349 TreePattern &TP; member
410 TreePattern &TP) const;
809 TreePattern &TP,
822 TreePattern &TP);
824 TreePattern &TP);
826 TreePattern &TP);
835 bool ContainsUnresolvedType(TreePattern &TP) const;
975 TP.getInfer().expandOverloads(VTS); in UpdateNodeType()
983 TP.getInfer().expandOverloads(VTS); in UpdateNodeType()
[all …]
H A DDAGISelMatcherGen.cpp177 TreePattern &TP = *CGP.pf_begin()->second; in InferPossibleTypes() local
178 TP.getInfer().CodeGen = true; in InferPossibleTypes()
179 TP.getInfer().ForceMode = ForceMode; in InferPossibleTypes()
183 MadeChange = PatWithNoTypes->ApplyTypeConstraints(TP, in InferPossibleTypes()
519 TreePattern *TP = Pred.Fn.getOrigPatFragRecord(); in EmitMatchCode() local
520 for (unsigned i = 0; i < TP->getNumArgs(); ++i) { in EmitMatchCode()
522 ("pred:" + Twine(Pred.Scope) + ":" + TP->getArgName(i)).str(); in EmitMatchCode()
/freebsd-12.1/sys/mips/conf/
H A DTP-WN1043ND2 # TP-1043ND -- Kernel configuration file for the TP-Link WR-1043ND
12 ident TP-WN1043ND
15 hints "TP-WN1043ND.hints"
H A DTP-MR30202 # TP Link MR3020 - an AR9331 based SoC wifi device.
24 ident TP-MR3020
27 hints "TP-MR3020.hints"
H A DTP-MR30402 # TP Link MR3040 - an AR9331 based SoC wifi device.
25 ident TP-MR3040
28 hints "TP-MR3040.hints"
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DChrono.h37 LLVM_ATTRIBUTE_ALWAYS_INLINE inline std::time_t toTimeT(TimePoint<> TP) { in toTimeT() argument
40 time_point_cast<system_clock::time_point::duration>(TP)); in toTimeT()
60 raw_ostream &operator<<(raw_ostream &OS, sys::TimePoint<> TP);
72 static void format(const sys::TimePoint<> &TP, llvm::raw_ostream &OS,
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Orc/
H A DLazyReexports.cpp24 std::unique_ptr<TrampolinePool> TP) in LazyCallThroughManager() argument
25 : ES(ES), ErrorHandlerAddr(ErrorHandlerAddr), TP(std::move(TP)) {} in LazyCallThroughManager()
31 auto Trampoline = TP->getTrampoline(); in getCallThroughTrampoline()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp49 const Type *TP = T.getTypePtr(); in hasPointerToPointerSizedType() local
50 QualType PointeeT = TP->getPointeeType(); in hasPointerToPointerSizedType()
63 if (const Type *TElem = TP->getArrayElementTypeNoTypeQual()) in hasPointerToPointerSizedType()
/freebsd-12.1/contrib/llvm/lib/Support/Windows/
H A DWindowsSupport.h214 inline FILETIME toFILETIME(TimePoint<> TP) { in toFILETIME() argument
216 TimeInteger.QuadPart = TP.time_since_epoch().count() / 100; in toFILETIME()
/freebsd-12.1/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 Dt5fw_cfg_hashfilter.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 Dt6fw_cfg_fpga.txt123 # to use for TP RX payload
126 # TP RX payload page size
129 # TP number of RX channels
133 # to use for TP TX payload
136 # TP TX payload page size
139 # TP number of TX channels
142 # TP OFLD MTUs
H A Dt6fw_cfg_uwire.txt126 # to use for TP RX payload
129 # TP RX payload page size
132 # TP number of RX channels
136 # to use for TP TX payload
139 # TP TX payload page size
142 # TP number of TX channels
145 # TP OFLD MTUs
H A Dt5fw_cfg_uwire.txt145 # to use for TP RX payload
148 # TP RX payload page size
151 # TP number of RX channels
155 # to use for TP TX payload
158 # TP TX payload page size
161 # TP number of TX channels
164 # TP OFLD MTUs
/freebsd-12.1/contrib/llvm/tools/clang/lib/Index/
H A DIndexDecl.cpp675 for (const NamedDecl *TP : *Params) { in VisitTemplateDecl()
676 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(TP)) { in VisitTemplateDecl()
679 } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(TP)) { in VisitTemplateDecl()
682 } else if (const auto *TTPD = dyn_cast<TemplateTemplateParmDecl>(TP)) { in VisitTemplateDecl()
685 TP->getLexicalDeclContext()); in VisitTemplateDecl()
/freebsd-12.1/contrib/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp2052 NodeList &TP = **Current; in demangleTemplateParameterList() local
2057 TP.N = demangleFullyQualifiedTypeName(MangledName); in demangleTemplateParameterList()
2060 TP.N = demangleType(MangledName, QualifierMangleMode::Drop); in demangleTemplateParameterList()
2063 TP.N = demangleType(MangledName, QualifierMangleMode::Mangle); in demangleTemplateParameterList()
2067 TP.N = TPRN = Arena.alloc<TemplateParameterReferenceNode>(); in demangleTemplateParameterList()
2106 TP.N = TPRN = Arena.alloc<TemplateParameterReferenceNode>(); in demangleTemplateParameterList()
2110 TP.N = TPRN = Arena.alloc<TemplateParameterReferenceNode>(); in demangleTemplateParameterList()
2141 TP.N = Arena.alloc<IntegerLiteralNode>(Value, IsNegative); in demangleTemplateParameterList()
2143 TP.N = demangleType(MangledName, QualifierMangleMode::Drop); in demangleTemplateParameterList()
2148 Current = &TP.Next; in demangleTemplateParameterList()

1234