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

12

/freebsd-10.1-release/contrib/llvm/include/llvm/Support/
H A DTimer.h1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
23 class Timer;
72 /// Timer - This class is used to track the amount of time spent between
75 /// By default, the Timer will print the amount of time it has captured to
80 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(0) { init(N); } function in class:llvm::Timer
89 Timer(StringRef N, TimerGroup &tg) : TG(0) { init(N, tg); } function in class:llvm::Timer
90 Timer(cons function in class:llvm::Timer
100 explicit Timer() : TG(0) {} function in class:llvm::Timer
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DTimer.cpp1 //===-- Timer.cpp -----------------------------------------------*- C++ -*-===//
9 #include "lldb/Core/Timer.h"
25 uint32_t Timer::g_depth = 0;
26 uint32_t Timer::g_display_depth = 0;
27 FILE * Timer::g_file = NULL;
28 typedef std::vector<Timer *> TimerStack;
66 Timer::SetQuiet (bool value)
72 Timer::Initialize ()
74 Timer::g_file = stdout;
78 Timer function in class:Timer
[all...]
H A DModule.cpp23 #include "lldb/Core/Timer.h"
420 Timer scoped_timer(__PRETTY_FUNCTION__, "Module::GetNumCompileUnits (module = %p)", this);
447 Timer scoped_timer(__PRETTY_FUNCTION__, "Module::ResolveFileAddress (vm_addr = 0x%" PRIx64 ")", vm_addr);
598 Timer scoped_timer(__PRETTY_FUNCTION__,
860 Timer scoped_timer(__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
956 Timer scoped_timer(__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
1197 Timer scoped_timer(__PRETTY_FUNCTION__,
1248 Timer scoped_timer(__PRETTY_FUNCTION__,
1286 Timer scoped_timer(__PRETTY_FUNCTION__,
1307 Timer scoped_time
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DTimer.h1 //===-- Timer.h -------------------------------------------------*- C++ -*-===//
23 /// @class Timer Timer.h "lldb/Core/Timer.h"
27 /// objects to have a mutex locked when a Timer::Locker
29 /// when the Timer::Locker::Reset(pthread_mutex_t *)
34 class Timer class in namespace:lldb_private
43 Timer(const char *category, const char *format, ...) __attribute__ ((format (printf, 3, 4)));
48 ~Timer();
91 Timer();
[all...]
/freebsd-10.1-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-10.1-release/contrib/llvm/lib/Support/
H A DTimer.cpp1 //===-- Timer.cpp - Interval Timing Support -------------------------------===//
14 #include "llvm/Support/Timer.h"
100 // Timer Implementation
103 void Timer::init(StringRef N) {
104 assert(TG == 0 && "Timer already initialized");
111 void Timer::init(StringRef N, TimerGroup &tg) {
112 assert(TG == 0 && "Timer already initialized");
119 Timer::~Timer() {
147 static ManagedStatic<std::vector<Timer*> > ActiveTimer
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectLog.cpp29 #include "lldb/Core/Timer.h"
419 Timer::SetDisplayDepth (UINT32_MAX);
424 Timer::DumpCategoryTimes (&result.GetOutputStream());
425 Timer::SetDisplayDepth (0);
430 Timer::DumpCategoryTimes (&result.GetOutputStream());
435 Timer::ResetCategoryTimes ();
450 Timer::SetDisplayDepth (depth);
462 Timer::SetQuiet (!increment);
/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestDrop.java52 final Timer timer = new Timer();
/freebsd-10.1-release/lib/clang/liblldbCore/
H A DMakefile59 Timer.cpp \
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/
H A Dlldb.cpp19 #include "lldb/Core/Timer.h"
93 Timer::Initialize ();
94 Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
171 Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DCompilerInstance.h29 class Timer;
99 OwningPtr<llvm::Timer> FrontendTimer;
462 llvm::Timer &getFrontendTimer() const {
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAranges.cpp19 #include "lldb/Core/Timer.h"
138 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-10.1-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-10.1-release/lib/clang/libllvmsupport/
H A DMakefile71 Timer.cpp \
/freebsd-10.1-release/contrib/llvm/include/llvm/IR/
H A DLegacyPassManagers.h99 class Timer;
466 Timer *getPassTimer(Pass *);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp14 #include "lldb/Core/Timer.h"
344 Timer scoped_timer (__PRETTY_FUNCTION__,
358 Timer scoped_timer (__PRETTY_FUNCTION__,
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Symbol/
H A DSymtab.cpp15 #include "lldb/Core/Timer.h"
259 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
451 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
609 Timer scoped_timer (__PRETTY_FUNCTION__,__PRETTY_FUNCTION__);
634 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
651 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
787 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
807 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
836 Timer scoped_timer (__PRETTY_FUNCTION__, "%s", __PRETTY_FUNCTION__);
/freebsd-10.1-release/sys/contrib/dev/acpica/common/
H A Dadisasm.c582 time_t Timer; local
584 time (&Timer);
591 AcpiOsPrintf (" * Disassembly of %s, %s", Filename, ctime (&Timer));
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeSummary.cpp24 #include "lldb/Core/Timer.h"
164 Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp46 #include "llvm/Support/Timer.h"
198 static llvm::Timer* TUTotalTimer;
213 TUTotalTimer = new llvm::Timer("Analyzer Total Time");
405 llvm::Timer* AnalysisConsumer::TUTotalTimer = 0;
/freebsd-10.1-release/lib/libc/isc/
H A Deventlib_p.h171 enum { Accept, File, Stream, Timer, Wait, Free, Null } type; enumerator in enum:evEvent_p::__anon5600
/freebsd-10.1-release/contrib/llvm/lib/IR/
H A DLegacyPassManager.cpp26 #include "llvm/Support/Timer.h"
461 DenseMap<Pass*, Timer*> TimingData;
471 for (DenseMap<Pass*, Timer*>::iterator I = TimingData.begin(),
483 Timer *getPassTimer(Pass *P) {
488 Timer *&T = TimingData[P];
490 T = new Timer(P->getPassName(), TG);
1771 Timer *llvm::getPassTimer(Pass *P) {

Completed in 236 milliseconds

12