/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | COFFLinkerContext.h | 65 Timer rootTimer; 66 Timer inputFileTimer; 67 Timer ltoTimer; 68 Timer gcTimer; 69 Timer icfTimer; 72 Timer codeLayoutTimer; 73 Timer outputCommitTimer; 74 Timer totalMapTimer; 75 Timer symbolGatherTimer; 76 Timer symbolStringsTimer; [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Timer.h | 23 class Timer { 31 friend class Timer; 43 Timer(Category &category, const char *format, ...) 51 ~Timer(); 75 Timer(const Timer &) = delete; 76 const Timer &operator=(const Timer &) = delete; 84 static ::lldb_private::Timer::Category _cat(LLVM_PRETTY_FUNCTION); \ 85 ::lldb_private::Timer _scoped_timer(_cat, "%s", LLVM_PRETTY_FUNCTION) 87 static ::lldb_private::Timer::Category _cat(LLVM_PRETTY_FUNCTION); \ 88 ::lldb_private::Timer _scoped_timer(_cat, __VA_ARGS__)
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Timer.h | 79 class Timer { 88 Timer **Prev = nullptr; ///< Pointer to \p Next of previous timer in group. 89 Timer *Next = nullptr; ///< Next timer in the group. 91 explicit Timer(StringRef TimerName, StringRef TimerDescription) { in Timer() function 94 Timer(StringRef TimerName, StringRef TimerDescription, TimerGroup &tg) { in Timer() function 97 Timer(const Timer &RHS) { in Timer() function 100 const Timer &operator=(const Timer &T) { 104 ~Timer(); 107 explicit Timer() = default; 144 Timer *T; [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | timing.h | 26 class Timer { 31 Timer() = default; 32 Timer(Timer &&Other) in Timer() function 38 Timer(const Timer &) = delete; 40 ~Timer(); 62 Timer(TimingManager &Manager, u32 HandleId) in Timer() function 74 class ScopedTimer : public Timer { 77 ScopedTimer(TimingManager &Manager, const Timer &Nest, const char *Name); 94 Timer getOrCreateTimer(const char *Name) EXCLUDES(Mutex) { in getOrCreateTimer() 100 return Timer(*this, I); in getOrCreateTimer() [all …]
|
H A D | timing.cpp | 13 Timer::~Timer() { in ~Timer() 19 : Timer(Manager.getOrCreateTimer(Name)) { in ScopedTimer() 23 ScopedTimer::ScopedTimer(TimingManager &Manager, const Timer &Nest, in ScopedTimer() 25 : Timer(Manager.nest(Nest, Name)) { in ScopedTimer()
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Timer.cpp | 29 typedef std::vector<Timer *> TimerStack; 30 static std::atomic<Timer::Category *> g_categories; 36 std::atomic<bool> Timer::g_quiet(true); 37 std::atomic<unsigned> Timer::g_display_depth(0); 48 Timer::Category::Category(const char *cat) : m_name(cat) { in Category() 58 void Timer::SetQuiet(bool value) { g_quiet = value; } in SetQuiet() 60 Timer::Timer(Timer::Category &category, const char *format, ...) in Timer() function in Timer 82 Timer::~Timer() { in ~Timer() 111 void Timer::SetDisplayDepth(uint32_t depth) { g_display_depth = depth; } in SetDisplayDepth() 130 void Timer::ResetCategoryTimes() { in ResetCategoryTimes() [all …]
|
/freebsd/contrib/llvm-project/lld/include/lld/Common/ |
H A 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); 42 explicit Timer(llvm::StringRef name); 53 std::vector<Timer *> children;
|
/freebsd/contrib/llvm-project/lld/Common/ |
H A D | Timer.cpp | 18 ScopedTimer::ScopedTimer(Timer &t) : t(&t) { in ScopedTimer() 31 Timer::Timer(llvm::StringRef name) : total(0), name(std::string(name)) {} in Timer() function in Timer 32 Timer::Timer(llvm::StringRef name, Timer &parent) in Timer() function in Timer 37 void Timer::print() { in print() 51 double Timer::millis() const { in millis() 57 void Timer::print(int depth, double totalDuration, bool recurse) const { in print()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A 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); 121 Timer *PassTimingInfo::newPassTimer(StringRef PassID, StringRef PassDesc) { in newPassTimer() 127 return new Timer(PassID, PassDescNumbered, TG); in newPassTimer() 130 Timer *PassTimingInfo::getPassTimer(Pass *P, PassInstanceID Pass) { in getPassTimer() 136 std::unique_ptr<Timer> &T = TimingData[Pass]; in getPassTimer() 152 Timer *getPassTimer(Pass *P) { in getPassTimer() 172 Timer &TimePassesHandler::getPassTimer(StringRef PassID, bool IsPass) { in getPassTimer() 177 Timers.emplace_back(new Timer(PassI in getPassTimer() [all...] |
/freebsd/usr.sbin/ppp/ |
H A D | throughput.c | 59 memset(&t->Timer, '\0', sizeof t->Timer); in throughput_init() 60 t->Timer.name = "throughput"; in throughput_init() 167 timer_Stop(&t->Timer); in throughput_sampler() 192 timer_Start(&t->Timer); in throughput_sampler() 199 timer_Stop(&t->Timer); in throughput_start() 215 timer_Stop(&t->Timer); in throughput_restart() 218 t->Timer.load = SECTICKS; in throughput_restart() 219 t->Timer.func = throughput_sampler; in throughput_restart() 220 t->Timer.name = name; in throughput_restart() 221 t->Timer.arg = t; in throughput_restart() [all …]
|
H A D | tty.c | 89 struct pppTimer Timer; /* CD checks */ member 123 timer_Stop(&dev->Timer); in tty_Timeout() 124 dev->Timer.load = SECTICKS; /* Once a second please */ in tty_Timeout() 125 timer_Start(&dev->Timer); in tty_Timeout() 134 timer_Stop(&dev->Timer); in tty_Timeout() 154 timer_Stop(&dev->Timer); in tty_Timeout() 172 timer_Stop(&dev->Timer); in tty_Timeout() 185 timer_Stop(&dev->Timer); in tty_StartTimer() 186 dev->Timer.load = SECTICKS; in tty_StartTimer() 187 dev->Timer.func = tty_Timeout; in tty_StartTimer() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | PassTimingInfo.h | 21 #include "llvm/Support/Timer.h" 37 Timer *getPassTimer(Pass *); 54 using TimerVector = llvm::SmallVector<std::unique_ptr<Timer>, 4>; 60 SmallVector<Timer *, 8> PassActiveTimerStack; 63 SmallVector<Timer *, 8> AnalysisActiveTimerStack; 97 Timer &getPassTimer(StringRef PassID, bool IsPass);
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A 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/sys/contrib/device-tree/src/powerpc/ |
H A D | lite5200.dts | 62 timer@600 { // General Purpose Timer 69 timer@610 { // General Purpose Timer 75 timer@620 { // General Purpose Timer 81 timer@630 { // General Purpose Timer 87 timer@640 { // General Purpose Timer 93 timer@650 { // General Purpose Timer 99 timer@660 { // General Purpose Timer 105 timer@670 { // General Purpose Timer
|
H A D | mpc5200b.dtsi | 63 gpt0: timer@600 { // General Purpose Timer 71 gpt1: timer@610 { // General Purpose Timer 78 gpt2: timer@620 { // General Purpose Timer 85 gpt3: timer@630 { // General Purpose Timer 92 gpt4: timer@640 { // General Purpose Timer 99 gpt5: timer@650 { // General Purpose Timer 106 gpt6: timer@660 { // General Purpose Timer 113 gpt7: timer@670 { // General Purpose Timer
|
/freebsd/sys/contrib/dev/acpica/components/executer/ |
H A 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/sys/contrib/device-tree/Bindings/timer/ |
H A D | faraday,fttmr010.txt | 33 interrupts = <14 IRQ_TYPE_EDGE_FALLING>, /* Timer 1 */ 34 <15 IRQ_TYPE_EDGE_FALLING>, /* Timer 2 */ 35 <16 IRQ_TYPE_EDGE_FALLING>; /* Timer 3 */
|
H A D | arm,twd.txt | 1 * ARM Timer Watchdog 4 Timer-Watchdog (aka TWD), which provides both a per-cpu local timer 10 ** Timer node required properties:
|
H A D | st,spear-timer.txt | 1 * SPEAr ARM Timer 3 ** Timer node required properties:
|
H A D | mediatek,mtk-timer.txt | 5 - CPUX (ARM/ARM64 System Timer) 6 - GPT (General Purpose Timer) 7 - SYST (System Timer)
|
H A D | brcm,bcm2835-system-timer.txt | 1 BCM2835 System Timer 3 The System Timer peripheral provides four 32-bit timer channels and a
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerUtilWindows.cpp | 115 HANDLE Timer; in SetTimer() local 116 if (!CreateTimerQueueTimer(&Timer, TimerQueue, AlarmHandler, NULL, in SetTimer() 124 static TimerQ Timer; variable 132 Timer.SetTimer(Options.UnitTimeoutSec / 2 + 1); in SetSignalHandler()
|
/freebsd/sys/contrib/device-tree/Bindings/watchdog/ |
H A D | sirfsoc_wdt.txt | 1 SiRFSoC Timer and Watchdog Timer(WDT) Controller
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectLog.cpp | 433 Timer::SetDisplayDepth(UINT32_MAX); in DoExecute() 441 Timer::SetDisplayDepth(depth); in DoExecute() 465 Timer::DumpCategoryTimes(result.GetOutputStream()); in DoExecute() 466 Timer::SetDisplayDepth(0); in DoExecute() 487 Timer::DumpCategoryTimes(result.GetOutputStream()); in DoExecute() 509 Timer::ResetCategoryTimes(); in DoExecute() 548 Timer::SetQuiet(!increment); in DoExecute()
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | atmel-sysregs.txt | 7 PIT Timer required properties: 13 PIT64B Timer required properties: 20 System Timer (ST) required properties:
|