Home
last modified time | relevance | path

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

123456789

/freebsd-14.2/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;
74 Timer totalMapTimer;
77 Timer writeTimer;
81 Timer addObjectsTimer;
83 Timer loadGHashTimer;
[all …]
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DTimer.h79 class Timer {
97 Timer(const Timer &RHS) { in Timer() function
100 const Timer &operator=(const Timer &T) {
104 ~Timer();
107 explicit Timer() = default;
144 Timer *T;
148 explicit TimeRegion(Timer &t) : T(&t) { in TimeRegion()
151 explicit TimeRegion(Timer *t) : T(t) { in TimeRegion()
242 friend class Timer;
244 void addTimer(Timer &T);
[all …]
/freebsd-14.2/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 {
100 return Timer(*this, I); in getOrCreateTimer()
107 return Timer(*this, NumAllocatedTimers++); in getOrCreateTimer()
128 Timer nest(const Timer &T, const char *Name) EXCLUDES(Mutex) { in nest()
[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-14.2/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-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/lib/IR/
H A DPassTimingInfo.cpp87 Timer *getPassTimer(Pass *, PassInstanceID);
92 Timer *newPassTimer(StringRef PassID, StringRef PassDesc);
127 return new Timer(PassID, PassDescNumbered, TG); in newPassTimer()
136 std::unique_ptr<Timer> &T = TimingData[Pass]; in getPassTimer()
152 Timer *getPassTimer(Pass *P) { in getPassTimer()
177 Timers.emplace_back(new Timer(PassID, PassID, TG)); in getPassTimer()
188 Timer *T = new Timer(PassID, FullDesc, TG); in getPassTimer()
229 const Timer* MyTimer = MyTimers[idx].get(); in dump()
239 const Timer* MyTimer = MyTimers[idx].get(); in dump()
261 Timer &MyTimer = getPassTimer(PassID, /*IsPass*/ true); in startPassTimer()
[all …]
/freebsd-14.2/usr.sbin/ppp/
H A Dthroughput.c59 memset(&t->Timer, '\0', sizeof t->Timer); 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()
220 t->Timer.name = name; in throughput_restart()
221 t->Timer.arg = t; in throughput_restart()
224 t->Timer.load = 0; in throughput_restart()
225 t->Timer.func = NULL; in throughput_restart()
227 t->Timer.arg = NULL; in throughput_restart()
[all …]
H A Dtty.c123 timer_Stop(&dev->Timer); in tty_Timeout()
125 timer_Start(&dev->Timer); in tty_Timeout()
134 timer_Stop(&dev->Timer); in tty_Timeout()
185 timer_Stop(&dev->Timer); in tty_StartTimer()
186 dev->Timer.load = SECTICKS; in tty_StartTimer()
188 dev->Timer.name = "tty CD"; in tty_StartTimer()
189 dev->Timer.arg = p; in tty_StartTimer()
192 timer_Start(&dev->Timer); in tty_StartTimer()
479 timer_Stop(&dev->Timer); in tty_Offline()
519 timer_Stop(&dev->Timer); in tty_StopTimer()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DPassTimingInfo.h37 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-14.2/sys/contrib/device-tree/Bindings/timer/
H A Dallwinner,sun5i-a13-hstimer.yaml7 title: Allwinner A13 High-Speed Timer
28 - description: Timer 0 Interrupt
29 - description: Timer 1 Interrupt
30 - description: Timer 2 Interrupt
31 - description: Timer 3 Interrupt
H A Dsamsung,exynos4210-mct.yaml7 title: Samsung Exynos SoC Multi Core Timer (MCT)
13 The Samsung's Multi Core Timer (MCT) module includes two main blocks, the
67 0: Global Timer Interrupt 0
68 1: Global Timer Interrupt 1
69 2: Global Timer Interrupt 2
70 3: Global Timer Interrupt 3
71 4: Local Timer Interrupt 0
72 5: Local Timer Interrupt 1
75 i: Local Timer Interrupt n
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-timer.yaml7 title: ARM Timer-Watchdog Timer
14 Timer-Watchdog (aka TWD), which provides both a per-cpu local timer
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 Dti,timer-dm.yaml67 Timer is always enabled when the SoC is powered. Note that some SoCs like
74 Timer is routable to the DSP in addition to the operating system.
79 Timer has been wired for PWM capability.
84 Timer access has been limited to secure mode only.
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DTimer.cpp136 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;
261 Timer &T = GroupEntry.second[Name]; in get()
323 void TimerGroup::removeTimer(Timer &T) { in removeTimer()
346 void TimerGroup::addTimer(Timer &T) { in addTimer()
410 for (Timer *T = FirstTimer; T; T = T->Next) { in prepareToPrintList()
[all …]
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilWindows.cpp110 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-14.2/sys/contrib/device-tree/Bindings/watchdog/
H A Dsirfsoc_wdt.txt1 SiRFSoC Timer and Watchdog Timer(WDT) Controller

123456789