| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 22 class Timer; 78 /// the Timer will print the amount of time it has captured to standard error 79 /// when the last timer is destroyed, otherwise it is printed when its 82 class Timer { 87 bool Running = false; ///< Is the timer currently running? 88 bool Triggered = false; ///< Has the timer ever been triggered? 89 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. 91 Timer **Prev = nullptr; ///< Pointer to \p Next of previous timer in group [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| PassTimingInfo.h | 23 #include "llvm/Support/Timer.h" 38 /// Request the timer for this legacy-pass-manager's pass instance. 39 Timer *getPassTimer(Pass *); 55 using TimerVector = llvm::SmallVector<std::unique_ptr<Timer>, 4>; 60 SmallVector<Timer *, 8> TimerStack; 93 /// Returns the new timer for each new run of the pass. 94 Timer &getPassTimer(StringRef PassID);
|
| LegacyPassManagers.h | 93 class Timer;
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| PassTimingInfo.cpp | 65 DenseMap<PassInstanceID, std::unique_ptr<Timer>> TimingData; ///< timers for pass instances 86 /// Returns the timer for the specified pass if it exists. 87 Timer *getPassTimer(Pass *, PassInstanceID); 92 Timer *newPassTimer(StringRef PassID, StringRef PassDesc); 122 Timer *PassTimingInfo::newPassTimer(StringRef PassID, StringRef PassDesc) { 128 return new Timer(PassID, PassDescNumbered, TG); 131 Timer *PassTimingInfo::getPassTimer(Pass *P, PassInstanceID Pass) { 137 std::unique_ptr<Timer> &T = TimingData[Pass]; 153 Timer *getPassTimer(Pass *P) { 171 /// Returns the timer for the specified pass invocation of \p PassID [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Timer.cpp | 1 //===-- Timer.cpp - Interval Timing Support -------------------------------===// 13 #include "llvm/Support/Timer.h" 52 /// Allows llvm::Timer to emit signposts when supported. 63 cl::desc("File to append -stats and -timer output to"), 105 // Timer Implementation 108 void Timer::init(StringRef TimerName, StringRef TimerDescription) { 112 void Timer::init(StringRef TimerName, StringRef TimerDescription, 114 assert(!TG && "Timer already initialized"); 122 Timer::~Timer() { [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerUtilWindows.cpp | 102 HANDLE Timer; 103 if (!CreateTimerQueueTimer(&Timer, TimerQueue, AlarmHandler, NULL, 111 static TimerQ Timer; 119 Timer.SetTimer(Options.UnitTimeoutSec / 2 + 1);
|
| /src/sys/external/bsd/acpica/dist/executer/ |
| exdebug.c | 83 UINT32 Timer; 122 * We will emit the current timer value (in microseconds) with each 128 Timer = ((UINT32) AcpiOsGetTimer () / 10); 129 Timer &= 0x03FFFFFF; 131 AcpiOsPrintf ("ACPI Debug: T=0x%8.8X %*s", Timer, Level, " ");
|
| /src/sys/arch/atari/atari/ |
| vectors.s | 125 VECTOR(badmfpint) | 68: modem port 1 baudgen (Timer D) 127 ASVECTOR(mfp_timc) | 69: Timer C {stat,prof}clock 129 VECTOR(badmfpint) | 69: Timer C 142 ASVECTOR(mfp_tima) | 77: Timer A (System clock) 153 VECTOR(badmfpint) | 84: serial port 1 baudgen (Timer D) 154 VECTOR(badmfpint) | 85: TCCLC SCC (Timer C) 161 VECTOR(badmfpint) | 88: Display enable (Timer B) 166 VECTOR(badmfpint) | 93: Timer A
|
| /src/external/apache2/llvm/dist/llvm/utils/yaml-bench/ |
| YAMLBench.cpp | 20 #include "llvm/Support/Timer.h" 147 llvm::Timer BaseLine((Name + ".loop").str(), (Description + ": Loop").str(), 157 llvm::Timer Tokenizing((Name + ".tokenizing").str(), 165 llvm::Timer Parsing((Name + ".parsing").str(),
|
| /src/sys/external/bsd/acpica/dist/common/ |
| dmtables.c | 94 time_t Timer; 124 time (&Timer); 125 AcpiOsPrintf (" * Disassembly of %s, %s", Filename, ctime (&Timer));
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
| AnalysisConsumer.cpp | 42 #include "llvm/Support/Timer.h" 115 std::unique_ptr<llvm::Timer> SyntaxCheckTimer; 116 std::unique_ptr<llvm::Timer> ExprEngineTimer; 117 std::unique_ptr<llvm::Timer> BugReporterTimer; 134 SyntaxCheckTimer = std::make_unique<llvm::Timer>( 136 ExprEngineTimer = std::make_unique<llvm::Timer>( 138 BugReporterTimer = std::make_unique<llvm::Timer>(
|
| /src/external/bsd/libbind/dist/isc/ |
| eventlib.c | 266 /* Get the status and content of the next timer. */ 275 enum { JustPoll, Block, Timer } m; 296 m = Timer; 325 if (m == Timer) { 348 } while (x == 0 && m == Timer && 397 new->type = Timer; 398 new->u.timer.this = nextTimer; 536 case Timer: { 537 evTimer *this = ev->u.timer.this; 539 evPrintf(ctx, 5, "Dispatch.Timer: func %p, uap %p\n" [all...] |
| eventlib_p.h | 130 evTimerID timer; member in struct:evStream 132 #define EV_STR_TIMEROK 0x0001 /*%< IFF timer valid. */ 169 enum { Accept, File, Stream, Timer, Wait, Free, Null } type; 174 struct { evTimer *this; } timer; member in union:evEvent_p::__anon7181
|
| ev_timers.c | 61 evTimer * timer; member in struct:__anon7176 234 ctx->cur->type == Timer && 235 ctx->cur->u.timer.this == del) { 236 evPrintf(ctx, 8, "deferring delete of timer (executing)\n"); 239 * clean up the timer. 267 evTimer *timer = id.opaque; local 272 if (heap_element(ctx->timers, timer->index) != timer) 276 timer->mode |= EV_TMR_RATE; 278 timer->mode &= ~EV_TMR_RATE 294 evTimer *timer = id.opaque; local 391 evTimer *timer = opaqueID.opaque; local 444 evTimer *timer; local [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Frontend/ |
| CompilerInstance.h | 33 class Timer; 113 /// The frontend timer group. 116 /// The frontend timer. 117 std::unique_ptr<llvm::Timer> FrontendTimer; 570 /// @name Frontend timer 575 llvm::Timer &getFrontendTimer() const { 576 assert(FrontendTimer && "Compiler instance has no frontend timer!"); 690 /// Create the frontend timer and replace any existing one with it.
|
| /src/sys/external/bsd/acpica/dist/os_specific/service_layers/ |
| oswinxf.c | 151 /* Get the timer frequency for use in AcpiOsGetTimer */ 325 * DESCRIPTION: Get the value of a system timer 333 LARGE_INTEGER Timer; 336 /* Attempt to use hi-granularity timer first */ 339 QueryPerformanceCounter (&Timer)) 343 return ((UINT64) ((Timer.QuadPart * (UINT64) ACPI_100NSEC_PER_SEC) / 347 /* Fall back to the lo-granularity timer */
|
| /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
| ASTMatchFinder.cpp | 24 #include "llvm/Support/Timer.h" 418 TimeBucketRegion Timer; 421 Timer.setBucket(&TimeByBucket[MC->getID()]); 428 TimeBucketRegion Timer; 431 Timer.setBucket(&TimeByBucket[MC->getID()]); 811 TimeBucketRegion Timer; 814 Timer.setBucket(&TimeByBucket[MP.second->getID()]); 833 TimeBucketRegion Timer; 838 Timer.setBucket(&TimeByBucket[MP.second->getID()]);
|
| /src/sys/external/bsd/acpica/dist/tools/examples/ |
| extables.c | 321 [0004] PM Timer Block Address : 00000001 327 [0001] PM Timer Block Length : 04 358 32-bit PM Timer (V1) : 0 365 Use Platform Timer (V4) : 0 419 [0012] PM Timer Block : [Generic Address Structure]
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| CompilerInstance.cpp | 51 #include "llvm/Support/Timer.h" 674 new llvm::Timer("frontend", "Clang front-end timer", 1503 std::unique_ptr<llvm::Timer> ReadTimer; 1506 ReadTimer = std::make_unique<llvm::Timer>("reading_modules", 1535 llvm::Timer Timer; 1537 Timer.init("preloading." + FileName.str(), "Preloading " + FileName.str(), 1539 llvm::TimeRegion TimeLoading(FrontendTimerGroup ? &Timer : nullptr); 1706 llvm::Timer Timer [all...] |
| /src/lib/libc/isc/ |
| eventlib_p.h | 130 evTimerID timer; member in struct:evStream 132 #define EV_STR_TIMEROK 0x0001 /*%< IFF timer valid. */ 169 enum { Accept, File, Stream, Timer, Wait, Free, Null } type; 174 struct { evTimer *this; } timer; member in union:evEvent_p::__anon367
|
| ev_timers.c | 67 evTimer * timer; member in struct:__anon1 251 ctx->cur->type == Timer && 252 ctx->cur->u.timer.this == del) { 253 evPrintf(ctx, 8, "deferring delete of timer (executing)\n"); 256 * clean up the timer. 284 evTimer *timer = id.opaque; local 289 if (heap_element(ctx->timers, timer->index) != timer) 293 timer->mode |= EV_TMR_RATE; 295 timer->mode &= ~EV_TMR_RATE 311 evTimer *timer = id.opaque; local 408 evTimer *timer = opaqueID.opaque; local 461 evTimer *timer; local [all...] |
| /src/external/apache2/llvm/lib/libLLVMSupport/ |
| Makefile | 113 Timer.cpp \
|
| /src/external/apache2/llvm/dist/libcxx/utils/libcxx/ |
| util.py | 218 timerObject = threading.Timer(timeout, killProcess)
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-rtdyld/ |
| llvm-rtdyld.cpp | 38 #include "llvm/Support/Timer.h" 152 Timer LoadObjectsTimer{"load", "time to load/add object files", RTDyldTG}; 153 Timer LinkTimer{"link", "time to link object files", RTDyldTG}; 154 Timer RunTimer{"run", "time to execute jitlink'd code", RTDyldTG};
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/lit/ |
| util.py | 357 timerObject = threading.Timer(timeout, killProcess)
|