/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() 72 int64_t Timer::counter() 85 int64_t Timer::frequency()
|
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
TimerListener.java | 25 * @param timer the timer that was added 27 void timerAdded(Timer timer); 30 * @param before the timer state before the update 31 * @param after the timer state after the update 33 void timerUpdated(Timer before, Timer after); 36 * @param timer the timer that was remove [all...] |
Timer.java | 30 import static com.android.deskclock.data.Timer.State.EXPIRED; 31 import static com.android.deskclock.data.Timer.State.MISSED; 32 import static com.android.deskclock.data.Timer.State.PAUSED; 33 import static com.android.deskclock.data.Timer.State.RESET; 34 import static com.android.deskclock.data.Timer.State.RUNNING; 37 * A read-only domain object representing a countdown timer. 39 public final class Timer { 72 /** The minimum duration of a timer. */ 75 /** The maximum duration of a new timer created via the user interface. */ 81 /** A unique identifier for the timer. * [all...] |
/toolchain/binutils/binutils-2.25/gold/ |
timer.h | 0 // timer.h -- helper class for time accounting -*- C++ -*- 29 class Timer 45 Timer(); 65 Timer(const Timer&); 66 Timer& operator=(const Timer&);
|
/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/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...] |
/device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/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/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/libchrome/base/timer/ |
timer.cc | 5 #include "base/timer/timer.h" 18 // Timer in the thread's default task runner. It also handles the following 21 // - abandoned (orphaned) by Timer. 24 explicit BaseTimerTaskInternal(Timer* timer) 25 : timer_(timer) { 30 // destructed. If so, don't leave Timer with a dangling pointer 41 // *this will be deleted by the task runner, so Timer needs to 45 // Although Timer should not call back into *this, let's clea 47 Timer* timer = timer_; local [all...] |
/external/mockito/src/test/java/org/mockito/internal/util/ |
TimerTest.java | 15 Timer timer = new Timer(duration); local 18 timer.start(); 21 Assertions.assertThat(timer.isCounting()).isTrue(); 27 Timer timer = new Timer(0); local 28 timer.start(); 34 Assertions.assertThat(timer.isCounting()).isFalse() [all...] |
/external/pdfium/xfa/fwl/ |
cfwl_caret.h | 40 class Timer : public CFWL_Timer { 42 explicit Timer(CFWL_Caret* pCaret); 43 ~Timer() override {} 47 friend class CFWL_Caret::Timer; 53 std::unique_ptr<CFWL_Caret::Timer> m_pTimer;
|
/external/skia/tests/ |
Test.cpp | 39 skiatest::Timer::Timer() : fStartNanos(SkTime::GetNSecs()) {} 41 double skiatest::Timer::elapsedNs() const { 45 double skiatest::Timer::elapsedMs() const { return this->elapsedNs() * 1e-6; } 47 SkMSec skiatest::Timer::elapsedMsInt() const {
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 22 class Timer; 72 /// the Timer will print the amount of time it has captured to standard error 73 /// when the last timer is destroyed, otherwise it is printed when its 76 class Timer { 81 bool Running; ///< Is the timer currently running? 82 bool Triggered; ///< Has the timer ever been triggered? 83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. 85 Timer **Prev; ///< Pointer to \p Next of previous timer in group [all...] |
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 22 class Timer; 72 /// the Timer will print the amount of time it has captured to standard error 73 /// when the last timer is destroyed, otherwise it is printed when its 76 class Timer { 81 bool Running; ///< Is the timer currently running? 82 bool Triggered; ///< Has the timer ever been triggered? 83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. 85 Timer **Prev; ///< Pointer to \p Next of previous timer in group [all...] |
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 22 class Timer; 72 /// the Timer will print the amount of time it has captured to standard error 73 /// when the last timer is destroyed, otherwise it is printed when its 76 class Timer { 81 bool Running; ///< Is the timer currently running? 82 bool Triggered; ///< Has the timer ever been triggered? 83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. 85 Timer **Prev; ///< Pointer to \p Next of previous timer in group [all...] |
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 22 class Timer; 72 /// the Timer will print the amount of time it has captured to standard error 73 /// when the last timer is destroyed, otherwise it is printed when its 76 class Timer { 81 bool Running; ///< Is the timer currently running? 82 bool Triggered; ///< Has the timer ever been triggered? 83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. 85 Timer **Prev; ///< Pointer to \p Next of previous timer in group [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 22 class Timer; 72 /// the Timer will print the amount of time it has captured to standard error 73 /// when the last timer is destroyed, otherwise it is printed when its 76 class Timer { 81 bool Running; ///< Is the timer currently running? 82 bool Triggered; ///< Has the timer ever been triggered? 83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. 85 Timer **Prev; ///< Pointer to \p Next of previous timer in group [all...] |
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 22 class Timer; 72 /// the Timer will print the amount of time it has captured to standard error 73 /// when the last timer is destroyed, otherwise it is printed when its 76 class Timer { 81 bool Running; ///< Is the timer currently running? 82 bool Triggered; ///< Has the timer ever been triggered? 83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. 85 Timer **Prev; ///< Pointer to \p Next of previous timer in group [all...] |
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 22 class Timer; 72 /// the Timer will print the amount of time it has captured to standard error 73 /// when the last timer is destroyed, otherwise it is printed when its 76 class Timer { 81 bool Running; ///< Is the timer currently running? 82 bool Triggered; ///< Has the timer ever been triggered? 83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. 85 Timer **Prev; ///< Pointer to \p Next of previous timer in group [all...] |
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 22 class Timer; 72 /// the Timer will print the amount of time it has captured to standard error 73 /// when the last timer is destroyed, otherwise it is printed when its 76 class Timer { 81 bool Running; ///< Is the timer currently running? 82 bool Triggered; ///< Has the timer ever been triggered? 83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. 85 Timer **Prev; ///< Pointer to \p Next of previous timer in group [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 22 class Timer; 72 /// the Timer will print the amount of time it has captured to standard error 73 /// when the last timer is destroyed, otherwise it is printed when its 76 class Timer { 81 bool Running; ///< Is the timer currently running? 82 bool Triggered; ///< Has the timer ever been triggered? 83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. 85 Timer **Prev; ///< Pointer to \p Next of previous timer in group [all...] |