/external/perfetto/include/perfetto/base/ |
watchdog_noop.h | 27 class Timer { 30 Timer() {} 31 Timer(const Timer&) {} 32 ~Timer() {} 38 Timer CreateFatalTimer(uint32_t /*ms*/) { return Timer(); }
|
watchdog_posix.h | 35 // Handle to the timer set to crash the program. If the handle is dropped, 36 // the timer is removed so the program does not crash. 37 class Timer { 39 ~Timer(); 40 Timer(Timer&&) noexcept; 45 explicit Timer(uint32_t ms); 46 Timer(const Timer&) = delete; 47 Timer& operator=(const Timer&) = delete [all...] |
/external/swiftshader/src/Common/ |
Timer.hpp | 22 class Timer 25 Timer(); 27 ~Timer();
|
Timer.cpp | 15 #include "Timer.hpp" 40 Timer::Timer() 44 Timer::~Timer() 48 double Timer::seconds() 59 int64_t Timer::ticks() 76 int64_t Timer::counter() 89 int64_t Timer::frequency()
|
/external/swiftshader/src/System/ |
Timer.hpp | 22 class Timer 25 Timer(); 27 ~Timer();
|
Timer.cpp | 15 #include "Timer.hpp" 40 Timer::Timer() 44 Timer::~Timer() 48 double Timer::seconds() 59 int64_t Timer::ticks() 72 int64_t Timer::counter() 85 int64_t Timer::frequency()
|
/external/tensorflow/tensorflow/stream_executor/ |
timer.cc | 16 #include "tensorflow/stream_executor/timer.h" 26 Timer::Timer(StreamExecutor *parent) 30 Timer::~Timer() { parent_->DeallocateTimer(this); } 32 uint64 Timer::Microseconds() const { return implementation_->Microseconds(); } 34 uint64 Timer::Nanoseconds() const { return implementation_->Nanoseconds(); }
|
timer.h | 31 // An interval timer, suitable for use in timing the operations which occur in 35 // the system. Any operation that a user attempts to perform by using a Timer 38 class Timer { 40 // Instantiate a timer tied to parent as a platform executor. 41 explicit Timer(StreamExecutor *parent); 43 // Deallocates any timer resources that the parent StreamExecutor has bestowed 45 ~Timer(); 47 // Returns the elapsed number of microseconds for a completed timer. 51 // Returns the elapsed number of nanoseconds for a completed timer. 61 // timer [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/Timer/ |
Timer.c | 14 Timer.c
18 Timer Architectural Protocol GUID as defined in Tiano
23 #include EFI_ARCH_PROTOCOL_DEFINITION (Timer)
27 EFI_GUID_STRING(&gEfiTimerArchProtocolGuid, "Timer", "Timer Arch Protocol");
|
/device/generic/goldfish/dhcp/client/ |
timer.h | 24 class Timer { 26 // Create a timer, initially the timer is already expired. 27 Timer(); 29 // Set the timer to expire in |seconds| seconds. 32 // Return true if the timer has expired. 34 // Get the remaining time on the timer in milliseconds.
|
timer.cpp | 17 #include "timer.h" 28 Timer::Timer() : mExpires(0) { 31 void Timer::expireSeconds(uint64_t seconds) { 35 bool Timer::expired() const { 39 uint64_t Timer::remainingMillis() const {
|
/external/skia/tools/viewer/ |
StatsLayer.h | 20 typedef int Timer; 22 Timer addTimer(const char* label, SkColor color, SkColor labelColor = 0); 23 void beginTiming(Timer); 24 void endTiming(Timer); 25 double getLastTime(Timer);
|
/external/skqp/tools/viewer/ |
StatsLayer.h | 20 typedef int Timer; 22 Timer addTimer(const char* label, SkColor color, SkColor labelColor = 0); 23 void beginTiming(Timer); 24 void endTiming(Timer); 25 double getLastTime(Timer);
|
/device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/ |
SyncTimer.c | 2 SMM Timer feature support
28 Initialize Timer for SMM AP Sync.
55 Start Timer for SMM AP Sync.
69 Check if the SMM AP Sync timer is timeout.
71 @param Timer The start timer from the begin.
77 IN UINT64 Timer
85 // We need to consider the case that CurrentTimer is equal to Timer
86 // when some timer runs too slow and CPU runs fast. We think roll over
93 if (CurrentTimer <= Timer) {
[all...] |
/external/libchrome/base/timer/ |
timer.cc | 5 #include "base/timer/timer.h" 20 // BaseTimerTaskInternal is a simple delegate for scheduling a callback to Timer 23 // - abandoned (orphaned) by Timer. 26 explicit BaseTimerTaskInternal(Timer* timer) 27 : timer_(timer) { 32 // destructed. If so, don't leave Timer with a dangling pointer 43 // |this| will be deleted by the task runner, so Timer needs to forget us: 46 // Although Timer should not call back into |this|, let's clear |timer_ 48 Timer* timer = timer_; local [all...] |
/device/linaro/bootloader/edk2/Nt32Pkg/TimerDxe/ |
TimerDxe.inf | 2 # NT Emulation Timer Architectural Protocol Driver as defined in DXE CIS
4 # This Timer module uses an NT Thread to simulate the timer-tick driven
5 # timer service. In the future, the Thread creation should possibly be
21 BASE_NAME = Timer
35 Timer.c
36 Timer.h
|
/device/linaro/bootloader/edk2/Omap35xxPkg/Library/OmapLib/ |
OmapLib.c | 38 IN UINTN Timer
41 switch (Timer) {
60 IN UINTN Timer
63 if ((Timer < 1) || (Timer > 12)) {
68 return 36 + Timer;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Event/ |
Timer.c | 2 Core Timer Services
31 // Timer functions
34 Inserts the timer event.
36 @param Event Points to the internal structure of timer event
52 // Get the timer's trigger time
54 TriggerTime = Event->Timer.TriggerTime;
57 // Insert the timer into the timer database in assending sorted order
60 Event2 = CR (Link, IEVENT, Timer.Link, EVENT_SIGNATURE);
62 if (Event2->Timer.TriggerTime > TriggerTime) { [all...] |
/device/linaro/bootloader/edk2/PcAtChipsetPkg/8254TimerDxe/ |
8254Timer.inf | 2 # 8254 timer driver that provides Timer Arch protocol.
17 BASE_NAME = Timer
18 MODULE_UNI_FILE = Timer.uni
37 Timer.h
38 Timer.c
|
/external/catch2/include/internal/ |
catch_timer.cpp | 57 void Timer::start() { 60 auto Timer::getElapsedNanoseconds() const -> uint64_t { 63 auto Timer::getElapsedMicroseconds() const -> uint64_t { 66 auto Timer::getElapsedMilliseconds() const -> unsigned int { 69 auto Timer::getElapsedSeconds() const -> double {
|
/external/mockito/src/test/java/org/mockito/internal/util/ |
TimerTest.java | 22 Timer timer = new Timer(duration); local 25 timer.start(); 28 Assertions.assertThat(timer.isCounting()).isTrue(); 34 Timer timer = new Timer(0); local 35 timer.start(); 41 Assertions.assertThat(timer.isCounting()).isFalse() [all...] |
/external/pdfium/xfa/fwl/ |
cfwl_caret.h | 38 class Timer : public CFWL_Timer { 40 explicit Timer(CFWL_Caret* pCaret); 41 ~Timer() override {} 45 friend class CFWL_Caret::Timer; 51 std::unique_ptr<CFWL_Caret::Timer> m_pTimer;
|
/external/deqp-deps/SPIRV-Tools/source/util/ |
timer.h | 28 // function does nothing. Otherwise, it prints resource types measured by Timer 32 // calling Timer::Report() to inform what those fields printed by 33 // Timer::Report() indicate (or spvtools::utils::PrintTimerDescription() must be 52 spvtools::utils::ScopedTimer<spvtools::utils::Timer> timer##__LINE__( \ 58 // Prints the description of resource types measured by Timer class. If |out| is 62 // calling Timer::Report() to inform what those fields printed by 63 // Timer::Report() indicate. 66 // Status of Timer. kGetrusageFailed means it failed in calling getrusage(). 77 // Timer measures the resource utilization for a range of code. The resourc 268 TimerType* timer; member in class:spvtools::utils::ScopedTimer [all...] |
/external/swiftshader/third_party/SPIRV-Tools/source/util/ |
timer.h | 28 // function does nothing. Otherwise, it prints resource types measured by Timer 32 // calling Timer::Report() to inform what those fields printed by 33 // Timer::Report() indicate (or spvtools::utils::PrintTimerDescription() must be 52 spvtools::utils::ScopedTimer<spvtools::utils::Timer> timer##__LINE__( \ 58 // Prints the description of resource types measured by Timer class. If |out| is 62 // calling Timer::Report() to inform what those fields printed by 63 // Timer::Report() indicate. 66 // Status of Timer. kGetrusageFailed means it failed in calling getrusage(). 77 // Timer measures the resource utilization for a range of code. The resourc 268 TimerType* timer; member in class:spvtools::utils::ScopedTimer [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 23 class Timer; 73 /// the Timer will print the amount of time it has captured to standard error 74 /// when the last timer is destroyed, otherwise it is printed when its 77 class Timer { 82 bool Running; ///< Is the timer currently running? 83 bool Triggered; ///< Has the timer ever been triggered? 84 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. 86 Timer **Prev; ///< Pointer to \p Next of previous timer in group [all...] |