Home
last modified time | relevance | path

Searched refs:Timer (Results 1 – 25 of 157) sorted by relevance

1234567

/freebsd/contrib/llvm-project/lld/COFF/
H A DCOFFLinkerContext.h65 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 DTimer.h23 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 DTimer.h79 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 Dtiming.h26 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 Dtiming.cpp13 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 DTimer.cpp29 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 DTimer.h23 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 DTimer.cpp18 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 DPassTimingInfo.cpp65 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 Dthroughput.c59 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 Dtty.c89 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 DPassTimingInfo.h21 #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 DTimer.cpp132 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 Dlite5200.dts62 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 Dmpc5200b.dtsi63 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 Dexdebug.c191 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 Dfaraday,fttmr010.txt33 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 Darm,twd.txt1 * ARM Timer Watchdog
4 Timer-Watchdog (aka TWD), which provides both a per-cpu local timer
10 ** Timer node required properties:
H A Dst,spear-timer.txt1 * SPEAr ARM Timer
3 ** Timer node required properties:
H A Dmediatek,mtk-timer.txt5 - CPUX (ARM/ARM64 System Timer)
6 - GPT (General Purpose Timer)
7 - SYST (System Timer)
H A Dbrcm,bcm2835-system-timer.txt1 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 DFuzzerUtilWindows.cpp115 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 Dsirfsoc_wdt.txt1 SiRFSoC Timer and Watchdog Timer(WDT) Controller
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectLog.cpp433 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 Datmel-sysregs.txt7 PIT Timer required properties:
13 PIT64B Timer required properties:
20 System Timer (ST) required properties:

1234567