Home
last modified time | relevance | path

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

12345678910>>...14

/netbsd-src/external/bsd/top/dist/machine/
H A Dm_freebsd.man6 .TP 15
9 .TP 15
12 .TP 15
15 .TP 15
18 .TP 15
39 .TP
42 .TP
45 .TP
48 .TP
51 .TP
[all …]
H A Dm_sunos5.man11 .TP 9
14 .TP 9
17 .TP 9
20 .TP 9
23 .TP 9
26 .TP 9
29 .TP 9
32 .TP 9
37 .TP 14
41 .TP 14
[all …]
H A Dm_macosx.c89 #define TP(mp, field) ((mp)->task_info . field) macro
101 #define TASKSIZE(t) (TP(t, virtual_size) + TP(t, resident_size))
470 100.0 * TP(pp, resident_size) / maxmem, in format_next_process()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXType.cpp85 const Type *TP = T.getTypePtrOrNull(); in GetTypeKind() local
86 if (!TP) in GetTypeKind()
90 switch (TP->getTypeClass()) { in GetTypeKind()
92 return GetBuiltinTypeKind(cast<BuiltinType>(TP)); in GetTypeKind()
445 const Type *TP = T.getTypePtrOrNull(); in clang_getPointeeType() local
447 if (!TP) in clang_getPointeeType()
451 switch (TP->getTypeClass()) { in clang_getPointeeType()
453 T = cast<PointerType>(TP)->getPointeeType(); in clang_getPointeeType()
456 T = cast<BlockPointerType>(TP)->getPointeeType(); in clang_getPointeeType()
460 T = cast<ReferenceType>(TP)->getPointeeType(); in clang_getPointeeType()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DLazyReexports.h44 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 DIndirectionUtils.h211 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DUnix.h88 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()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/projects/
H A DMakefile.am28 PROJECTS = TP KDE GNOME
30 TP/trigger TP/team-address \
34 TP/teams.url TP/teams.html \
H A DChangeLog47 * TP/teams.url: Update.
48 * TP/teams.html: Update.
67 * TP/teams.html: Update.
156 * KDE/team-address, GNOME/team-address, TP/team-address: Likewise.
160 * TP/team-address: Show URL
173 * TP: New project directory.
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp343 if (In.empty() || Out == In || TP.hasError()) in MergeInTypeInfo()
352 TP.error("Type contradiction"); in MergeInTypeInfo()
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()
418 if (TP.hasError() || !Out.empty()) in EnforceAny()
457 if (TP.hasError()) in EnforceSmallerThan()
492 TP.error("Incompatible types"); in EnforceSmallerThan()
[all …]
H A DCodeGenDAGPatterns.h260 TypeInfer(TreePattern &T) : TP(T), ForceMode(0) {} in TypeInfer()
356 TreePattern &TP; member
417 TreePattern &TP) const;
482 bool ApplyTypeConstraints(TreePatternNode *N, TreePattern &TP) const;
710 bool isTypeCompletelyUnknown(unsigned ResNo, TreePattern &TP) const { in isTypeCompletelyUnknown() argument
817 TreePattern &TP,
823 bool ApplyTypeConstraints(TreePattern &TP, bool NotRegisters);
830 TreePattern &TP);
832 TreePattern &TP);
834 TreePattern &TP);
[all …]
H A DDAGISelMatcherGen.cpp176 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DChrono.cpp25 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 <<()
/netbsd-src/external/gpl2/xcvs/dist/doc/
H A Dcvs.man.footer2 .TP
12 .TP
17 .TP
24 .TP
29 .TP
/netbsd-src/external/apache2/llvm/dist/clang/tools/diagtool/
H A DTreeView.cpp177 TreePrinter TP(out); in run() local
178 TP.Internal = Internal; in run()
179 TP.showKey(); in run()
180 return ShowAll ? TP.showAll() : TP.showGroup(RootGroup); in run()
/netbsd-src/usr.bin/xlint/lint2/
H A Dchk.c107 TP(sym->s_type)->t_tspec == FUNC && in check_name()
108 TP(sym->s_type)->t_proto) { in check_name()
184 if (TP(sym->s_type)->t_tspec == FUNC) in check_declared_not_used_or_defined()
249 t1 = (tp1 = TP(def->s_type)->t_subt)->t_tspec; in chkvtui()
251 tp2 = TP(call->f_type)->t_subt; in chkvtui()
303 tp1 = TP(def->s_type); in chkvtdi()
308 tp2 = TP(sym->s_type); in chkvtdi()
358 if ((tp1 = TP(def->s_type))->t_tspec != FUNC) in chkfaui()
361 } else if (decl != NULL && TP(decl->s_type)->t_proto) { in chkfaui()
362 if ((tp1 = TP(dec in chkfaui()
[all...]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DChrono.h36 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,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DLazyReexports.cpp20 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 DTPCIndirectionUtils.cpp275 if (TP) in cleanup()
277 static_cast<TPCTrampolinePool &>(*TP).deallocatePool()); in cleanup()
319 if (!TP) in getTrampolinePool()
320 TP = std::make_unique<TPCTrampolinePool>(*this); in getTrampolinePool()
321 return *TP; in getTrampolinePool()
/netbsd-src/external/apache2/llvm/dist/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)) {
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp48 const Type *TP = T.getTypePtr(); in hasPointerToPointerSizedType() local
49 QualType PointeeT = TP->getPointeeType(); in hasPointerToPointerSizedType()
62 if (const Type *TElem = TP->getArrayElementTypeNoTypeQual()) in hasPointerToPointerSizedType()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
H A DRecursiveSymbolVisitor.h101 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()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/datetime/
H A Dinterval.d315 bool contains(scope const TP timePoint) const pure
374 bool contains(scope const PosInfInterval!TP interval) const pure
401 bool contains(scope const NegInfInterval!TP interval) const pure
431 bool isBefore(scope const TP timePoint) const pure
489 bool isBefore(scope const PosInfInterval!TP interval) const pure
516 bool isBefore(scope const NegInfInterval!TP interval) const pure
546 bool isAfter(scope const TP timePoint) const pure
604 bool isAfter(scope const PosInfInterval!TP interval) const pure
628 bool isAfter(scope const NegInfInterval!TP interval) const pure
684 bool intersects(scope const PosInfInterval!TP interval) const pure
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/
H A Dinterval.d287 bool contains(in TP timePoint) const pure
346 bool contains(in PosInfInterval!TP interval) const pure
373 bool contains(in NegInfInterval!TP interval) const pure
403 bool isBefore(in TP timePoint) const pure
461 bool isBefore(in PosInfInterval!TP interval) const pure
488 bool isBefore(in NegInfInterval!TP interval) const pure
518 bool isAfter(in TP timePoint) const pure
576 bool isAfter(in PosInfInterval!TP interval) const pure
600 bool isAfter(in NegInfInterval!TP interval) const pure
656 bool intersects(in PosInfInterval!TP interval) const pure
[all …]
/netbsd-src/sys/dev/acpi/
H A Dacpidevs196 PNP8072 DEC (DE211) EtherWorks MC/TP
199 PNP8074 HP MC LAN Adapter/16 TP (PC27246)
220 PNP80ea DEC (DE101) EtherWorks LC/TP
221 PNP80eb DEC (DE201) EtherWorks Turbo/TP
249 PNP8128 SMC EtherCard PLUS TP (WD/8003WT)
251 PNP812d Intel EtherExpress 16 or 16TP
260 PNP8155 HP PC LAN Adapter/8 TP (HP27245)
261 PNP8156 HP PC LAN Adapter/16 TP (HP27247A)
263 PNP8158 HP PC LAN Adapter/16 TP Plus (HP27247B)

12345678910>>...14