Searched refs:Timer (Results 1 - 25 of 52) sorted by relevance

123

/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DTimer.h1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
22 class Timer;
70 /// Timer - This class is used to track the amount of time spent between
73 /// By default, the Timer will print the amount of time it has captured to
78 class Timer { class in namespace:llvm
84 TimerGroup *TG; // The TimerGroup this Timer is in.
86 Timer **Prev, *Next; // Doubly linked list of timers in the group.
88 explicit Timer(StringRef N) : TG(nullptr) { init(N); } function in class:llvm::Timer
89 Timer(StringRef N, TimerGroup &tg) : TG(nullptr) { init(N, tg); } function in class:llvm::Timer
90 Timer(cons function in class:llvm::Timer
100 explicit Timer() : TG(nullptr) {} function in class:llvm::Timer
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DTimer.cpp1 //===-- Timer.cpp -----------------------------------------------*- C++ -*-===//
9 #include "lldb/Core/Timer.h"
36 std::vector<Timer*> m_stack;
40 std::atomic<bool> Timer::g_quiet(true);
41 std::atomic<unsigned> Timer::g_display_depth(0);
42 std::mutex Timer::g_file_mutex;
43 FILE* Timer::g_file = nullptr;
81 Timer::SetQuiet (bool value)
87 Timer::Initialize ()
89 Timer
93 Timer::Timer (const char *category, const char *format, ...) : function in class:Timer
[all...]
H A DModule.cpp22 #include "lldb/Core/Timer.h"
485 Timer scoped_timer(__PRETTY_FUNCTION__,
514 Timer scoped_timer(__PRETTY_FUNCTION__, "Module::ResolveFileAddress (vm_addr = 0x%" PRIx64 ")", vm_addr);
676 Timer scoped_timer(__PRETTY_FUNCTION__,
938 Timer scoped_timer(__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
1041 Timer scoped_timer(__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
1290 Timer scoped_timer(__PRETTY_FUNCTION__,
1361 Timer scoped_timer(__PRETTY_FUNCTION__,
1399 Timer scoped_timer(__PRETTY_FUNCTION__,
1420 Timer scoped_time
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DTimer.h1 //===-- Timer.h -------------------------------------------------*- C++ -*-===//
29 /// @class Timer Timer.h "lldb/Core/Timer.h"
33 /// objects to have a mutex locked when a Timer::Locker
35 /// when the Timer::Locker::Reset(pthread_mutex_t *)
40 class Timer class in namespace:lldb_private
46 Timer(const char *category, const char *format, ...) __attribute__ ((format (printf, 3, 4)));
51 ~Timer();
96 Timer();
[all...]
/freebsd-11.0-release/usr.sbin/ppp/
H A Dthroughput.c59 memset(&t->Timer, '\0', sizeof t->Timer);
60 t->Timer.name = "throughput";
167 timer_Stop(&t->Timer);
192 timer_Start(&t->Timer);
199 timer_Stop(&t->Timer);
215 timer_Stop(&t->Timer);
218 t->Timer.load = SECTICKS;
219 t->Timer.func = throughput_sampler;
220 t->Timer
[all...]
H A Dthroughput.h51 struct pppTimer Timer; member in struct:pppThroughput
H A Dtty.c89 struct pppTimer Timer; /* CD checks */ member in struct:ttydevice
123 timer_Stop(&dev->Timer);
124 dev->Timer.load = SECTICKS; /* Once a second please */
125 timer_Start(&dev->Timer);
134 timer_Stop(&dev->Timer);
154 timer_Stop(&dev->Timer);
172 timer_Stop(&dev->Timer);
185 timer_Stop(&dev->Timer);
186 dev->Timer.load = SECTICKS;
187 dev->Timer
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DTimer.cpp1 //===-- Timer.cpp - Interval Timing Support -------------------------------===//
14 #include "llvm/Support/Timer.h"
95 // Timer Implementation
98 void Timer::init(StringRef N) {
102 void Timer::init(StringRef N, TimerGroup &tg) {
103 assert(!TG && "Timer already initialized");
110 Timer::~Timer() {
138 void Timer::startTimer() {
144 void Timer
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Initialization/
H A DSystemInitializerCommon.cpp15 #include "lldb/Core/Timer.h"
89 Timer::Initialize();
90 Timer scoped_timer(__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
134 Timer scoped_timer(__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
/freebsd-11.0-release/sys/contrib/dev/acpica/components/executer/
H A Dexdebug.c83 UINT32 Timer; local
129 Timer = ((UINT32) AcpiOsGetTimer () / 10);
130 Timer &= 0x03FFFFFF;
132 AcpiOsPrintf ("[ACPI Debug T=0x%8.8X] %*s", Timer, Level, " ");
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectLog.cpp25 #include "lldb/Core/Timer.h"
413 Timer::SetDisplayDepth (UINT32_MAX);
418 Timer::DumpCategoryTimes (&result.GetOutputStream());
419 Timer::SetDisplayDepth (0);
424 Timer::DumpCategoryTimes (&result.GetOutputStream());
429 Timer::ResetCategoryTimes ();
444 Timer::SetDisplayDepth (depth);
456 Timer::SetQuiet (!increment);
/freebsd-11.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestDrop.java52 final Timer timer = new Timer();
/freebsd-11.0-release/lib/clang/liblldbCore/
H A DMakefile62 Timer.cpp \
/freebsd-11.0-release/sys/contrib/dev/acpica/common/
H A Ddmtables.c94 time_t Timer; local
97 time (&Timer);
120 AcpiOsPrintf (" * Disassembly of %s, %s", Filename, ctime (&Timer));
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAranges.cpp19 #include "lldb/Core/Timer.h"
137 Timer scoped_timer(__PRETTY_FUNCTION__, "%s this = %p",
H A DDWARFDebugPubnames.cpp13 #include "lldb/Core/Timer.h"
34 Timer scoped_timer (__PRETTY_FUNCTION__,
67 Timer scoped_timer (__PRETTY_FUNCTION__,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp19 #include "lldb/Core/Timer.h"
110 Timer scoped_timer (__PRETTY_FUNCTION__,
/freebsd-11.0-release/lib/clang/libllvmsupport/
H A DMakefile75 Timer.cpp \
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Host/common/
H A DSymbols.cpp18 #include "lldb/Core/Timer.h"
172 Timer scoped_timer (__PRETTY_FUNCTION__,
201 Timer scoped_timer (__PRETTY_FUNCTION__,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DSymtab.cpp17 #include "lldb/Core/Timer.h"
269 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
476 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
637 Timer scoped_timer (__PRETTY_FUNCTION__,__PRETTY_FUNCTION__);
662 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
679 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
815 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
835 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
864 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp25 #include "llvm/Support/Timer.h"
308 TimeBucketRegion Timer; local
311 Timer.setBucket(&TimeByBucket[MC->getID()]);
318 TimeBucketRegion Timer; local
321 Timer.setBucket(&TimeByBucket[MC->getID()]);
523 TimeBucketRegion Timer; local
526 Timer.setBucket(&TimeByBucket[MP.second->getID()]);
545 TimeBucketRegion Timer; local
550 Timer.setBucket(&TimeByBucket[MP.second->getID()]);
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DCompilerInstance.h32 class Timer;
112 std::unique_ptr<llvm::Timer> FrontendTimer;
566 llvm::Timer &getFrontendTimer() const {
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInstance.cpp46 #include "llvm/Support/Timer.h"
513 new llvm::Timer("Clang front-end timer", *FrontendTimerGroup));
1266 std::unique_ptr<llvm::Timer> ReadTimer;
1268 ReadTimer = llvm::make_unique<llvm::Timer>("Reading modules",
1301 llvm::Timer Timer; local
1303 Timer.init("Preloading " + FileName.str(), *FrontendTimerGroup);
1304 llvm::TimeRegion TimeLoading(FrontendTimerGroup ? &Timer : nullptr);
1439 llvm::Timer Timer; local
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DLegacyPassManagers.h100 class Timer;
505 Timer *getPassTimer(Pass *);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp46 #include "llvm/Support/Timer.h"
182 static llvm::Timer* TUTotalTimer;
198 TUTotalTimer = new llvm::Timer("Analyzer Total Time");
397 llvm::Timer* AnalysisConsumer::TUTotalTimer = nullptr;

Completed in 240 milliseconds

123