HomeSort by: relevance | last modified time | path
    Searched defs:Timer (Results 1 - 11 of 11) sorted by relevancy

  /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/external/bsd/acpica/dist/common/
dmtables.c 94 time_t Timer;
124 time (&Timer);
125 AcpiOsPrintf (" * Disassembly of %s, %s", Filename, ctime (&Timer));
  /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/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/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/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
  /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/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
  /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/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...]

Completed in 22 milliseconds