| /freebsd-13.1/bin/sh/tests/parameters/ |
| H A D | pwd2.0 | 8 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-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | LazyReexports.h | 44 JITTargetAddress ErrorHandlerAddr, TrampolinePool *TP); 71 void setTrampolinePool(TrampolinePool &TP) { this->TP = &TP; } in setTrampolinePool() argument 81 TrampolinePool *TP = nullptr; variable 96 auto TP = LocalTrampolinePool<ORCABI>::Create( in init() local 104 if (!TP) in init() 105 return TP.takeError(); in init() 107 this->TP = std::move(*TP); in init() 108 setTrampolinePool(*this->TP); in init() 112 std::unique_ptr<TrampolinePool> TP; variable
|
| H A D | IndirectionUtils.h | 211 JITCompileCallbackManager(std::unique_ptr<TrampolinePool> TP, in JITCompileCallbackManager() argument 214 : TP(std::move(TP)), ES(ES), in JITCompileCallbackManager() 218 void setTrampolinePool(std::unique_ptr<TrampolinePool> TP) { in setTrampolinePool() argument 219 this->TP = std::move(TP); in setTrampolinePool() 224 std::unique_ptr<TrampolinePool> TP; variable 259 auto TP = LocalTrampolinePool<ORCABI>::Create( in LocalJITCompileCallbackManager() local 265 if (!TP) { in LocalJITCompileCallbackManager() 266 Err = TP.takeError(); in LocalJITCompileCallbackManager() 270 setTrampolinePool(std::move(*TP)); in LocalJITCompileCallbackManager()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Unix.h | 88 inline struct timespec toTimeSpec(TimePoint<> TP) { in toTimeSpec() argument 92 RetVal.tv_sec = toTimeT(TP); in toTimeSpec() 93 RetVal.tv_nsec = (TP.time_since_epoch() % seconds(1)).count(); in toTimeSpec() 98 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) { in toTimeVal() argument 102 RetVal.tv_sec = toTimeT(TP); in toTimeVal() 103 RetVal.tv_usec = (TP.time_since_epoch() % seconds(1)).count(); in toTimeVal()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Chrono.cpp | 25 static inline struct tm getStructTM(TimePoint<> TP) { in getStructTM() argument 27 std::time_t OurTime = toTimeT(TP); in getStructTM() 43 raw_ostream &operator<<(raw_ostream &OS, TimePoint<> TP) { in operator <<() argument 44 struct tm LT = getStructTM(TP); in operator <<() 49 long((TP.time_since_epoch() % std::chrono::seconds(1)) in operator <<()
|
| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CodeGenDAGPatterns.cpp | 359 if (TP.hasError()) in forceArbitrary() 378 if (TP.hasError()) in EnforceInteger() 388 if (TP.hasError()) in EnforceFloatingPoint() 398 if (TP.hasError()) in EnforceScalar() 408 if (TP.hasError()) in EnforceVector() 457 if (TP.hasError()) in EnforceSmallerThan() 567 if (TP.hasError()) in EnforceVectorEltTypeIs() 619 if (TP.hasError()) in EnforceVectorSubVectorTypeIs() 687 if (TP.hasError()) in EnforceSameNumElts() 740 if (TP.hasError()) in EnforceSameSize() [all …]
|
| H A D | CodeGenDAGPatterns.h | 260 TypeInfer(TreePattern &T) : TP(T), ForceMode(0) {} in TypeInfer() 356 TreePattern &TP; member 417 TreePattern &TP) const; 817 TreePattern &TP, 830 TreePattern &TP); 832 TreePattern &TP); 834 TreePattern &TP); 843 bool ContainsUnresolvedType(TreePattern &TP) const; 983 TP.getInfer().expandOverloads(VTS); in UpdateNodeType() 991 TP.getInfer().expandOverloads(VTS); in UpdateNodeType() [all …]
|
| H A D | DAGISelMatcherGen.cpp | 176 TreePattern &TP = *CGP.pf_begin()->second; in InferPossibleTypes() local 177 TP.getInfer().CodeGen = true; in InferPossibleTypes() 178 TP.getInfer().ForceMode = ForceMode; in InferPossibleTypes() 182 MadeChange = PatWithNoTypes->ApplyTypeConstraints(TP, in InferPossibleTypes() 543 TreePattern *TP = Pred.Fn.getOrigPatFragRecord(); in EmitMatchCode() local 544 for (unsigned i = 0; i < TP->getNumArgs(); ++i) { in EmitMatchCode() 546 ("pred:" + Twine(Pred.Scope) + ":" + TP->getArgName(i)).str(); in EmitMatchCode()
|
| /freebsd-13.1/sys/mips/conf/ |
| H A D | TP-WN1043ND | 2 # TP-1043ND -- Kernel configuration file for the TP-Link WR-1043ND 12 ident TP-WN1043ND 15 hints "TP-WN1043ND.hints"
|
| H A D | TP-MR3020 | 2 # TP Link MR3020 - an AR9331 based SoC wifi device. 24 ident TP-MR3020 27 hints "TP-MR3020.hints"
|
| H A D | TP-MR3040 | 2 # TP Link MR3040 - an AR9331 based SoC wifi device. 25 ident TP-MR3040 28 hints "TP-MR3040.hints"
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Chrono.h | 36 inline std::time_t toTimeT(TimePoint<> TP) { in toTimeT() argument 39 time_point_cast<system_clock::time_point::duration>(TP)); in toTimeT() 59 raw_ostream &operator<<(raw_ostream &OS, sys::TimePoint<> TP); 71 static void format(const sys::TimePoint<> &TP, llvm::raw_ostream &OS,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | LazyReexports.cpp | 20 ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr, TrampolinePool *TP) in LazyCallThroughManager() argument 21 : ES(ES), ErrorHandlerAddr(ErrorHandlerAddr), TP(TP) {} in LazyCallThroughManager() 26 assert(TP && "TrampolinePool not set"); in getCallThroughTrampoline() 29 auto Trampoline = TP->getTrampoline(); in getCallThroughTrampoline()
|
| H A D | EPCIndirectionUtils.cpp | 275 if (TP) in cleanup() 277 static_cast<EPCTrampolinePool &>(*TP).deallocatePool()); in cleanup() 319 if (!TP) in getTrampolinePool() 320 TP = std::make_unique<EPCTrampolinePool>(*this); in getTrampolinePool() 321 return *TP; in getTrampolinePool()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ |
| H A D | RecursiveSymbolVisitor.h | 101 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-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ObjCContainersASTChecker.cpp | 48 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-13.1/contrib/llvm-project/llvm/lib/Support/Windows/ |
| H A D | Memory.inc | 77 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.1/sys/dev/cxgbe/firmware/ |
| H A D | t4fw_cfg.txt | 31 # TP number of RX channels (0 = auto) 37 # TP number of TX channels (0 = auto) 40 # TP OFLD MTUs
|
| H A D | t6fw_cfg_hashfilter.txt | 32 # TP number of RX channels (0 = auto) 38 # TP number of TX channels (0 = auto) 41 # TP OFLD MTUs
|
| H A D | t6fw_cfg.txt | 32 # TP number of RX channels (0 = auto) 38 # TP number of TX channels (0 = auto) 41 # TP OFLD MTUs
|
| H A D | t5fw_cfg.txt | 58 # TP number of RX channels (0 = auto) 64 # TP number of TX channels (0 = auto) 67 # TP OFLD MTUs
|
| H A D | t5fw_cfg_hashfilter.txt | 58 # TP number of RX channels (0 = auto) 64 # TP number of TX channels (0 = auto) 67 # TP OFLD MTUs
|
| H A D | t6fw_cfg_fpga.txt | 123 # 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
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/Windows/ |
| H A D | WindowsSupport.h | 222 inline FILETIME toFILETIME(TimePoint<> TP) { in toFILETIME() argument 224 TimeInteger.QuadPart = TP.time_since_epoch().count() / 100; in toFILETIME()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Index/ |
| H A D | IndexDecl.cpp | 684 for (const NamedDecl *TP : *Params) { in VisitTemplateDecl() 686 IndexCtx.handleDecl(TP); in VisitTemplateDecl() 687 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(TP)) { in VisitTemplateDecl() 690 } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(TP)) { in VisitTemplateDecl() 693 } else if (const auto *TTPD = dyn_cast<TemplateTemplateParmDecl>(TP)) { in VisitTemplateDecl() 696 TP->getLexicalDeclContext()); in VisitTemplateDecl()
|