| /src/external/apache2/llvm/dist/llvm/lib/Support/Unix/ |
| Unix.h | 88 inline struct timespec toTimeSpec(TimePoint<> TP) { 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) { 102 RetVal.tv_sec = toTimeT(TP); 103 RetVal.tv_usec = (TP.time_since_epoch() % seconds(1)).count();
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/ |
| LazyReexports.h | 44 JITTargetAddress ErrorHandlerAddr, TrampolinePool *TP); 71 void setTrampolinePool(TrampolinePool &TP) { this->TP = &TP; } 81 TrampolinePool *TP = nullptr; 96 auto TP = LocalTrampolinePool<ORCABI>::Create( 104 if (!TP) 105 return TP.takeError(); 107 this->TP = std::move(*TP); [all...] |
| IndirectionUtils.h | 211 JITCompileCallbackManager(std::unique_ptr<TrampolinePool> TP, 214 : TP(std::move(TP)), ES(ES), 218 void setTrampolinePool(std::unique_ptr<TrampolinePool> TP) { 219 this->TP = std::move(TP); 224 std::unique_ptr<TrampolinePool> TP; 259 auto TP = LocalTrampolinePool<ORCABI>::Create( 265 if (!TP) { 266 Err = TP.takeError() [all...] |
| TPCIndirectionUtils.h | 153 std::unique_ptr<TrampolinePool> TP;
|
| /src/external/gpl2/gettext/dist/gettext-tools/projects/ |
| Makefile.am | 28 PROJECTS = TP KDE GNOME 30 TP/trigger TP/team-address \ 34 TP/teams.url TP/teams.html \
|
| /src/external/apache2/llvm/dist/clang/tools/libclang/ |
| CXType.cpp | 85 const Type *TP = T.getTypePtrOrNull(); 86 if (!TP) 90 switch (TP->getTypeClass()) { 92 return GetBuiltinTypeKind(cast<BuiltinType>(TP)); 445 const Type *TP = T.getTypePtrOrNull(); 447 if (!TP) 451 switch (TP->getTypeClass()) { 453 T = cast<PointerType>(TP)->getPointeeType(); 456 T = cast<BlockPointerType>(TP)->getPointeeType(); 460 T = cast<ReferenceType>(TP)->getPointeeType() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Chrono.cpp | 25 static inline struct tm getStructTM(TimePoint<> TP) { 27 std::time_t OurTime = toTimeT(TP); 43 raw_ostream &operator<<(raw_ostream &OS, TimePoint<> TP) { 44 struct tm LT = getStructTM(TP); 49 long((TP.time_since_epoch() % std::chrono::seconds(1))
|
| /src/external/apache2/llvm/dist/clang/tools/diagtool/ |
| TreeView.cpp | 177 TreePrinter TP(out); 178 TP.Internal = Internal; 179 TP.showKey(); 180 return ShowAll ? TP.showAll() : TP.showGroup(RootGroup);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| Chrono.h | 36 inline std::time_t toTimeT(TimePoint<> TP) { 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,
|
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| CodeGenDAGPatterns.h | 260 TypeInfer(TreePattern &T) : TP(T), ForceMode(0) {} 356 TreePattern &TP; 417 TreePattern &TP) const; 482 bool ApplyTypeConstraints(TreePatternNode *N, TreePattern &TP) const; 710 bool isTypeCompletelyUnknown(unsigned ResNo, TreePattern &TP) const { 817 TreePattern &TP, 823 bool ApplyTypeConstraints(TreePattern &TP, bool NotRegisters); 830 TreePattern &TP); 832 TreePattern &TP); 834 TreePattern &TP); [all...] |
| CodeGenDAGPatterns.cpp | 343 if (In.empty() || Out == In || TP.hasError()) 352 TP.error("Type contradiction"); 359 if (TP.hasError()) 378 if (TP.hasError()) 388 if (TP.hasError()) 398 if (TP.hasError()) 408 if (TP.hasError()) 418 if (TP.hasError() || !Out.empty()) 457 if (TP.hasError()) 492 TP.error("Incompatible types") [all...] |
| DAGISelMatcherGen.cpp | 174 // TP - Get *SOME* tree pattern, we don't care which. It is only used for 176 TreePattern &TP = *CGP.pf_begin()->second; 177 TP.getInfer().CodeGen = true; 178 TP.getInfer().ForceMode = ForceMode; 182 MadeChange = PatWithNoTypes->ApplyTypeConstraints(TP, 543 TreePattern *TP = Pred.Fn.getOrigPatFragRecord(); 544 for (unsigned i = 0; i < TP->getNumArgs(); ++i) { 546 ("pred:" + Twine(Pred.Scope) + ":" + TP->getArgName(i)).str();
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/ |
| LazyReexports.cpp | 20 ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr, TrampolinePool *TP) 21 : ES(ES), ErrorHandlerAddr(ErrorHandlerAddr), TP(TP) {} 26 assert(TP && "TrampolinePool not set"); 29 auto Trampoline = TP->getTrampoline();
|
| TPCIndirectionUtils.cpp | 275 if (TP) 277 static_cast<TPCTrampolinePool &>(*TP).deallocatePool()); 319 if (!TP) 320 TP = std::make_unique<TPCTrampolinePool>(*this); 321 return *TP;
|
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/ |
| RecursiveSymbolVisitor.h | 101 if (const Type *TP = Loc.getTypePtr()) { 102 if (TP->getTypeClass() == clang::Type::Record) 103 return visit(TP->getAsCXXRecordDecl(), TypeBeginLoc, TypeEndLoc);
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| ObjCContainersASTChecker.cpp | 48 const Type *TP = T.getTypePtr(); 49 QualType PointeeT = TP->getPointeeType(); 62 if (const Type *TElem = TP->getArrayElementTypeNoTypeQual())
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/Windows/ |
| 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)) {
|
| /src/usr.bin/xlint/lint2/ |
| chk.c | 112 TP(sym->s_type)->t_tspec == FUNC && 113 TP(sym->s_type)->t_proto) { 189 if (TP(sym->s_type)->t_tspec == FUNC) 254 t1 = (tp1 = TP(def->s_type)->t_subt)->t_tspec; 256 tp2 = TP(call->f_type)->t_subt; 304 const type_t *tp1 = TP(def->s_type); 308 const type_t *tp2 = TP(sym->s_type); 358 if ((tp1 = TP(def->s_type))->t_tspec != FUNC) 361 } else if (decl != NULL && TP(decl->s_type)->t_proto) { 362 if ((tp1 = TP(decl->s_type))->t_tspec != FUNC 607 const type_t *tp; local 835 const type_t *tp = NULL; local [all...] |
| emit2.c | 46 outtype(const type_t *tp) 51 while (tp != NULL) { 52 tspec_t ts = tp->t_tspec; 53 if (ts == INT && tp->t_is_enum) 57 if (tp->t_const) 59 if (tp->t_volatile) 63 if (ts == FUNC && tp->t_args != NULL && !tp->t_proto) 69 outint(tp->t_dim); 71 if (tp->t_istag) [all...] |
| lint2.h | 185 TP(unsigned short type_id)
|
| /src/tests/lib/libc/gen/ |
| t_ctype.c | 854 #define ADD_TEST_ABUSE(TP, FN) do \ 856 ATF_TP_ADD_TC(TP, abuse_##FN##_macro_c); \ 857 ATF_TP_ADD_TC(TP, abuse_##FN##_function_c); \ 858 ATF_TP_ADD_TC(TP, abuse_##FN##_macro_locale); \ 859 ATF_TP_ADD_TC(TP, abuse_##FN##_function_locale); \ 924 #define ADD_TEST_ABUSE_OVERRIDE(TP, FN) do \ 926 ATF_TP_ADD_TC(TP, abuse_override_##FN##_macro_c); \ 927 ATF_TP_ADD_TC(TP, abuse_override_##FN##_function_c); \ 928 ATF_TP_ADD_TC(TP, abuse_override_##FN##_macro_locale); \ 929 ATF_TP_ADD_TC(TP, abuse_override_##FN##_function_locale); [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/Windows/ |
| WindowsSupport.h | 222 inline FILETIME toFILETIME(TimePoint<> TP) { 224 TimeInteger.QuadPart = TP.time_since_epoch().count() / 100;
|
| /src/external/bsd/top/dist/machine/ |
| m_macosx.c | 89 #define TP(mp, field) ((mp)->task_info . field) 101 #define TASKSIZE(t) (TP(t, virtual_size) + TP(t, resident_size)) 463 // TP(pp, base_priority), 470 100.0 * TP(pp, resident_size) / maxmem,
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/ |
| interval.d | 120 struct Interval(TP) 139 this(U)(scope const TP begin, scope const U end) pure 140 if (is(immutable TP == immutable U)) 144 _begin = cast(TP) begin; 145 _end = cast(TP) end; 164 this(D)(scope const TP begin, scope const D duration) pure 167 _begin = cast(TP) begin; 180 _begin = cast(TP) rhs._begin; 181 _end = cast(TP) rhs._end; 192 _begin = cast(TP) rhs._begin [all...] |
| /src/external/bsd/ntp/dist/scripts/deprecated/ |
| html2man.in | 145 print MANOUT "\n.TP 8\n";
|