| /freebsd-12-stable/contrib/llvm-project/lld/Common/ |
| D | Timer.cpp | 16 ScopedTimer::ScopedTimer(Timer &t) : t(&t) { in ScopedTimer() 29 Timer::Timer(llvm::StringRef name) : name(std::string(name)) {} in Timer() function in Timer 30 Timer::Timer(llvm::StringRef name, Timer &parent) : name(std::string(name)) { in Timer() function in Timer 34 Timer &Timer::root() { in root() 35 static Timer rootTimer("Total Link Time"); in root() 39 void Timer::print() { in print() 53 double Timer::millis() const { in millis() 59 void Timer::print(int depth, double totalDuration, bool recurse) const { in print()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/ |
| D | Timer.h | 22 class Timer; variable 82 class Timer { 91 Timer **Prev = nullptr; ///< Pointer to \p Next of previous timer in group. 92 Timer *Next = nullptr; ///< Next timer in the group. 94 explicit Timer(StringRef TimerName, StringRef TimerDescription) { in Timer() function 97 Timer(StringRef TimerName, StringRef TimerDescription, TimerGroup &tg) { in Timer() function 100 Timer(const Timer &RHS) { in Timer() function 103 const Timer &operator=(const Timer &T) { 107 ~Timer(); 110 explicit Timer() {} in Timer() function [all …]
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/ |
| D | Timer.h | 28 class Timer { 36 friend class Timer; 48 Timer(Category &category, const char *format, ...) 56 ~Timer(); 80 Timer(const Timer &) = delete; 81 const Timer &operator=(const Timer &) = delete; 91 static ::lldb_private::Timer::Category _cat(LLVM_PRETTY_FUNCTION); \ 92 ::lldb_private::Timer _scoped_timer(_cat, "%s", LLVM_PRETTY_FUNCTION); \ 100 static ::lldb_private::Timer::Category _cat(LLVM_PRETTY_FUNCTION); \ 101 ::lldb_private::Timer _scoped_timer(_cat, FMT, __VA_ARGS__); \
|
| /freebsd-12-stable/contrib/llvm-project/lld/include/lld/Common/ |
| D | Timer.h | 23 class Timer; variable 26 explicit ScopedTimer(Timer &t); 34 Timer *t = nullptr; 37 class Timer { 39 Timer(llvm::StringRef name, Timer &parent); 41 static Timer &root(); 49 explicit Timer(llvm::StringRef name); 53 std::vector<Timer *> children;
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/ |
| D | Timer.cpp | 29 typedef std::vector<Timer *> TimerStack; 30 static std::atomic<Timer::Category *> g_categories; 38 std::atomic<bool> Timer::g_quiet(true); 39 std::atomic<unsigned> Timer::g_display_depth(0); 50 Timer::Category::Category(const char *cat) : m_name(cat) { in Category() 60 void Timer::SetQuiet(bool value) { g_quiet = value; } in SetQuiet() 62 Timer::Timer(Timer::Category &category, const char *format, ...) in Timer() function in Timer 83 Timer::~Timer() { in ~Timer() 110 void Timer::SetDisplayDepth(uint32_t depth) { g_display_depth = depth; } in SetDisplayDepth() 129 void Timer::ResetCategoryTimes() { in ResetCategoryTimes() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/ |
| D | PassTimingInfo.cpp | 65 DenseMap<PassInstanceID, std::unique_ptr<Timer>> TimingData; ///< timers for pass instances 87 Timer *getPassTimer(Pass *, PassInstanceID); 92 Timer *newPassTimer(StringRef PassID, StringRef PassDesc); 122 Timer *PassTimingInfo::newPassTimer(StringRef PassID, StringRef PassDesc) { in newPassTimer() 128 return new Timer(PassID, PassDescNumbered, TG); in newPassTimer() 131 Timer *PassTimingInfo::getPassTimer(Pass *P, PassInstanceID Pass) { in getPassTimer() 137 std::unique_ptr<Timer> &T = TimingData[Pass]; in getPassTimer() 153 Timer *getPassTimer(Pass *P) { in getPassTimer() 173 Timer &TimePassesHandler::getPassTimer(StringRef PassID) { in getPassTimer() 177 Timers.emplace_back(new Timer(PassID, PassID, TG)); in getPassTimer() [all …]
|
| /freebsd-12-stable/usr.sbin/ppp/ |
| D | throughput.c | 61 memset(&t->Timer, '\0', sizeof t->Timer); in throughput_init() 62 t->Timer.name = "throughput"; in throughput_init() 169 timer_Stop(&t->Timer); in throughput_sampler() 194 timer_Start(&t->Timer); in throughput_sampler() 201 timer_Stop(&t->Timer); in throughput_start() 217 timer_Stop(&t->Timer); in throughput_restart() 220 t->Timer.load = SECTICKS; in throughput_restart() 221 t->Timer.func = throughput_sampler; in throughput_restart() 222 t->Timer.name = name; in throughput_restart() 223 t->Timer.arg = t; in throughput_restart() [all …]
|
| D | tty.c | 91 struct pppTimer Timer; /* CD checks */ member 125 timer_Stop(&dev->Timer); in tty_Timeout() 126 dev->Timer.load = SECTICKS; /* Once a second please */ in tty_Timeout() 127 timer_Start(&dev->Timer); in tty_Timeout() 136 timer_Stop(&dev->Timer); in tty_Timeout() 156 timer_Stop(&dev->Timer); in tty_Timeout() 174 timer_Stop(&dev->Timer); in tty_Timeout() 187 timer_Stop(&dev->Timer); in tty_StartTimer() 188 dev->Timer.load = SECTICKS; in tty_StartTimer() 189 dev->Timer.func = tty_Timeout; in tty_StartTimer() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/ |
| D | Timer.cpp | 132 void Timer::init(StringRef TimerName, StringRef TimerDescription) { in init() 136 void Timer::init(StringRef TimerName, StringRef TimerDescription, in init() 146 Timer::~Timer() { in ~Timer() 190 void Timer::startTimer() { in startTimer() 197 void Timer::stopTimer() { in stopTimer() 205 void Timer::clear() { in clear() 241 typedef StringMap<Timer> Name2TimerMap; 252 Timer &get(StringRef Name, StringRef Description, StringRef GroupName, in get() 261 Timer &T = GroupEntry.second[Name]; in get() 323 void TimerGroup::removeTimer(Timer &T) { in removeTimer() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| D | PassTimingInfo.h | 39 Timer *getPassTimer(Pass *); 55 using TimerVector = llvm::SmallVector<std::unique_ptr<Timer>, 4>; 60 SmallVector<Timer *, 8> TimerStack; 94 Timer &getPassTimer(StringRef PassID);
|
| /freebsd-12-stable/contrib/llvm-project/lld/COFF/ |
| D | PDB.h | 23 class Timer; variable 38 extern Timer loadGHashTimer; 39 extern Timer mergeGHashTimer;
|
| D | MapFile.cpp | 45 static Timer totalMapTimer("MAP emission (Cumulative)", Timer::root()); 46 static Timer symbolGatherTimer("Gather symbols", totalMapTimer); 47 static Timer symbolStringsTimer("Build symbol strings", totalMapTimer); 48 static Timer writeTimer("Write to file", totalMapTimer);
|
| D | MarkLive.cpp | 18 static Timer gctimer("GC", Timer::root());
|
| /freebsd-12-stable/sys/contrib/dev/acpica/components/executer/ |
| D | exdebug.c | 191 UINT32 Timer; in AcpiExDoDebugObject() local 236 Timer = ((UINT32) AcpiOsGetTimer () / 10); in AcpiExDoDebugObject() 237 Timer &= 0x03FFFFFF; in AcpiExDoDebugObject() 239 AcpiOsPrintf ("ACPI Debug: T=0x%8.8X %*s", Timer, Level, " "); in AcpiExDoDebugObject()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/ |
| D | CommandObjectLog.cpp | 328 Timer::SetDisplayDepth(UINT32_MAX); in DoExecute() 336 Timer::SetDisplayDepth(depth); in DoExecute() 361 Timer::DumpCategoryTimes(&result.GetOutputStream()); in DoExecute() 362 Timer::SetDisplayDepth(0); in DoExecute() 384 Timer::DumpCategoryTimes(&result.GetOutputStream()); in DoExecute() 407 Timer::ResetCategoryTimes(); in DoExecute() 459 Timer::SetQuiet(!increment); in DoExecute()
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| D | FuzzerUtilWindows.cpp | 110 HANDLE Timer; in SetTimer() local 111 if (!CreateTimerQueueTimer(&Timer, TimerQueue, AlarmHandler, NULL, in SetTimer() 119 static TimerQ Timer; variable 127 Timer.SetTimer(Options.UnitTimeoutSec / 2 + 1); in SetSignalHandler()
|
| /freebsd-12-stable/sys/contrib/dev/acpica/common/ |
| D | dmtables.c | 202 time_t Timer; in AdDisassemblerHeader() local 205 time (&Timer); in AdDisassemblerHeader() 228 AcpiOsPrintf (" * Disassembly of %s, %s", Filename, ctime (&Timer)); in AdDisassemblerHeader()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ |
| D | AnalysisConsumer.cpp | 115 std::unique_ptr<llvm::Timer> SyntaxCheckTimer; 116 std::unique_ptr<llvm::Timer> ExprEngineTimer; 117 std::unique_ptr<llvm::Timer> BugReporterTimer; 135 SyntaxCheckTimer = std::make_unique<llvm::Timer>( in AnalysisConsumer() 137 ExprEngineTimer = std::make_unique<llvm::Timer>( in AnalysisConsumer() 139 BugReporterTimer = std::make_unique<llvm::Timer>( in AnalysisConsumer()
|
| /freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/ |
| D | TestDrop.java | 52 final Timer timer = new Timer(); in startTimer()
|
| /freebsd-12-stable/sys/arm/conf/ |
| D | NOTES.armv7 | 33 device generic_timer # ARM Generic Timer 36 device mpcore_timer # ARM MPCore Timer
|
| /freebsd-12-stable/sys/dts/arm/ |
| D | zynq-7000.dtsi | 91 // ARM Cortex A9 TWD Timer 96 reg = <0xf00200 0x100>, // Global Timer Regs 97 <0xf00600 0x20>; // Private Timer Regs
|
| D | tegra20.dtsi | 58 reg = < 0x50040200 0x100 >, /* Global Timer Registers */ 59 < 0x50040600 0x100 >; /* Private Timer Registers */
|
| D | trimslice.dts | 72 reg = < 0x50040200 0x100 >, /* Global Timer Registers */ 73 < 0x50040600 0x100 >; /* Private Timer Registers */
|
| /freebsd-12-stable/share/misc/ |
| D | scsi_modes | 131 {IDLE_A Condition Timer} i4 132 {STANDBY_Z Condition Timer} i4 133 {IDLE_B Condition Timer} i4 134 {IDLE_C Condition Timer} i4 135 {STANDBY_Y Condition Timer} i4 271 {Interval Timer} i4
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/ASTMatchers/ |
| D | ASTMatchFinder.cpp | 418 TimeBucketRegion Timer; in onStartOfTranslationUnit() local 421 Timer.setBucket(&TimeByBucket[MC->getID()]); in onStartOfTranslationUnit() 428 TimeBucketRegion Timer; in onEndOfTranslationUnit() local 431 Timer.setBucket(&TimeByBucket[MC->getID()]); in onEndOfTranslationUnit() 811 TimeBucketRegion Timer; in matchWithoutFilter() local 814 Timer.setBucket(&TimeByBucket[MP.second->getID()]); in matchWithoutFilter() 833 TimeBucketRegion Timer; in matchWithFilter() local 838 Timer.setBucket(&TimeByBucket[MP.second->getID()]); in matchWithFilter()
|