/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...] |
/external/llvm/include/llvm/Support/ |
Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 22 class Timer; 70 /// Timer - This class is used to track the amount of time spent between 73 /// By default, the Timer will print the amount of time it has captured to 74 /// standard error when the last timer is destroyed, otherwise it is printed 78 class Timer { 82 bool Running; // Is the timer currently running? 83 bool Triggered; // Has the timer ever been triggered? 84 TimerGroup *TG; // The TimerGroup this Timer is in. 86 Timer **Prev, *Next; // Doubly linked list of timers in the group [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
Timer.h | 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===// 10 // This file defines three classes: Timer, TimeRegion, and TimerGroup, 27 class Timer; 71 /// print - Print the current timer to standard error, and reset the "Started" 76 /// Timer - This class is used to track the amount of time spent between 79 /// By default, the Timer will print the amount of time it has captured to 80 /// standard error when the laster timer is destroyed, otherwise it is printed 84 class Timer { 88 TimerGroup *TG; // The TimerGroup this Timer is in. 90 Timer **Prev, *Next; // Doubly linked list of timers in the group [all...] |
/external/libchrome/base/timer/ |
timer.h | 5 // OneShotTimer and RepeatingTimer provide a simple timer API. As the names 10 // OneShotTimer and RepeatingTimer both cancel the timer when they go out of 14 // receive timer events. 36 // allows you to easily defer the timer event until the timer delay passes once 45 // - The destructor may be called from any sequence when the timer is not 48 // - SetTaskRunner() may be called from any sequence when the timer is not 53 // Timer was *started on*, but this can be changed *prior* to Start() via 59 // IMPORTANT: If you change timer code, make sure that all tests (including 85 class BASE_EXPORT Timer { [all...] |
/external/catch2/include/internal/ |
catch_timer.h | 18 class Timer {
|
/external/iperf3/src/ |
timer.c | 33 #include "timer.h" 36 static Timer* timers = NULL; 37 static Timer* free_timers = NULL; 61 list_add( Timer* t ) 63 Timer* t2; 64 Timer* t2prev; 72 /* The new timer goes at the head of the list. */ 100 list_remove( Timer* t ) 112 list_resort( Timer* t ) 114 /* Remove the timer from the list. * [all...] |
timer.h | 36 /* TimerClientData is an opaque value that tags along with a timer. The 38 ** the timer triggers. 49 /* The TimerProc gets called when the timer expires. It gets passed 50 ** the TimerClientData associated with the timer, and a iperf_time in case 51 ** it wants to schedule another timer. 55 /* The Timer struct. */ 66 } Timer; 68 /* Set up a timer, either periodic or one-shot. Returns (Timer*) 0 on errors. */ 69 extern Timer* tmr_create [all...] |
/external/llvm/unittests/Support/ |
TimerTest.cpp | 1 //===- unittests/TimerTest.cpp - Timer tests ------------------------------===// 10 #include "llvm/Support/Timer.h" 35 TEST(Timer, Additivity) { 36 Timer T1("T1"); 52 TEST(Timer, CheckIfTriggered) { 53 Timer T1("T1");
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/ |
TimerTest.cpp | 1 //===- unittests/TimerTest.cpp - Timer tests ------------------------------===// 10 #include "llvm/Support/Timer.h" 35 TEST(Timer, Additivity) { 36 Timer T1("T1", "T1"); 52 TEST(Timer, CheckIfTriggered) { 53 Timer T1("T1", "T1");
|
/art/tools/dexfuzz/src/dexfuzz/ |
Timer.java | 24 public class Timer { 26 * The name of the timer, the phase of the program it is intended to time. 42 * Initialise a new timer with the provided name. 44 public Timer(String name) { 65 * Log the elapsed time this timer has recorded.
|
/external/mockito/src/main/java/org/mockito/internal/util/ |
Timer.java | 9 public class Timer { 14 public Timer(long durationMillis) { 20 * Informs whether the timer is still counting down. 28 * Starts the timer count down.
|
/external/libchrome/base/files/ |
important_file_writer.h | 18 #include "base/timer/timer.h" 116 // Overrides the timer to use for scheduling writes with |timer_override|. 117 void SetTimerForTesting(Timer* timer_override); 120 const Timer& timer() const { function in class:base::ImportantFileWriter 121 return timer_override_ ? const_cast<const Timer&>(*timer_override_) 124 Timer& timer() { return timer_override_ ? *timer_override_ : timer_; } function in class:base::ImportantFileWriter 138 // Timer used to schedule commit after ScheduleWrite [all...] |
/external/pdfium/testing/ |
embedder_test_timer_handling_delegate.h | 25 struct Timer { 43 std::pair<int, Timer>(msecs + fake_elapsed_msecs_, {id, msecs, fn})); 68 Timer t = iter->second; 71 std::pair<int, Timer>(fake_elapsed_msecs_ + t.interval, t)); 72 t.fn(t.id); // Fire timer. 81 std::multimap<int, Timer> expiry_to_timer_map_; // Keyed by timeout.
|
/external/skqp/tests/ |
Test.cpp | 57 skiatest::Timer::Timer() : fStartNanos(SkTime::GetNSecs()) {} 59 double skiatest::Timer::elapsedNs() const { 63 double skiatest::Timer::elapsedMs() const { return this->elapsedNs() * 1e-6; } 65 SkMSec skiatest::Timer::elapsedMsInt() const {
|
/external/autotest/frontend/client/src/autotest/common/ |
CommonClassFactory.java | 4 import com.google.gwt.user.client.Timer; 12 Timer timer = new Timer() { local 20 timer.scheduleRepeating(10 * 60 * 1000);
|
/external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/ |
DrawingCanvas.java | 6 import javax.swing.Timer; 12 private final Timer timer; field in class:DrawingCanvas 17 timer = new Timer(1000/60, loop); 18 timer.setRepeats(true); 25 timer.start(); 30 timer.stop();
|
/external/ImageMagick/MagickCore/ |
timer.h | 16 MagickCore timer methods. 38 } Timer; 42 Timer
|
/device/linaro/bootloader/edk2/EmulatorPkg/TimerDxe/ |
Timer.inf | 2 # Emu Emulation Timer Architectural Protocol Driver as defined in DXE CIS
33 Timer.c
34 Timer.h
|
/device/linaro/bootloader/edk2/Omap35xxPkg/Include/Library/ |
OmapLib.h | 27 IN UINTN Timer
33 IN UINTN TImer
|
/device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/ |
DebugTimer.c | 2 Code for debug timer to support debug agent library implementation.
18 Initialize CPU local APIC timer.
20 @param[out] TimerFrequency Local APIC timer frequency returned.
21 @param[in] DumpFlag If TRUE, dump Local APIC timer's parameter.
23 @return 32-bit Local APIC timer init count.
39 // Cpu Local Apic timer interrupt frequency, it is set to 0.1s
51 // Disable Debug Timer interrupt to avoid it is delivered before Debug Port
57 DEBUG ((EFI_D_INFO, "Debug Timer: FSB Clock = %d\n", PcdGet32(PcdFSBClock)));
58 DEBUG ((EFI_D_INFO, "Debug Timer: Divisor = %d\n", ApicTimerDivisor));
59 DEBUG ((EFI_D_INFO, "Debug Timer: Frequency = %d\n", ApicTimerFrequency)); [all...] |
DebugTimer.h | 2 Header file for debug timer to support debug agent library implementation.
19 Initialize CPU local APIC timer.
21 @param[out] TimerFrequency Local APIC timer frequency returned.
22 @param[in] DumpFlag If TRUE, dump Local APIC timer's parameter.
24 @return 32-bit Local APIC timer init count.
33 Check if the timer is time out.
35 @param[in] TimerCycle Timer initial count.
36 @param[in] Timer The start timer from the begin.
39 @return TRUE Timer time out occurs. [all...] |
/external/mockito/src/main/java/org/mockito/internal/verification/ |
VerificationOverTimeImpl.java | 8 import org.mockito.internal.util.Timer; 22 private final Timer timer; field in class:VerificationOverTimeImpl 36 this(pollingPeriodMillis, delegate, returnOnSuccess, new Timer(durationMillis)); 48 * @param timer Checker of whether the duration of the verification is still acceptable 50 public VerificationOverTimeImpl(long pollingPeriodMillis, VerificationMode delegate, boolean returnOnSuccess, Timer timer) { 54 this.timer = timer; 75 timer.start() [all...] |
/external/skia/tests/ |
Test.cpp | 73 skiatest::Timer::Timer() : fStartNanos(SkTime::GetNSecs()) {} 75 double skiatest::Timer::elapsedNs() const { 79 double skiatest::Timer::elapsedMs() const { return this->elapsedNs() * 1e-6; } 81 SkMSec skiatest::Timer::elapsedMsInt() const {
|
/art/test/059-finalizer-throw/src/ |
Main.java | 17 import java.util.Timer; 45 new Timer(true).schedule(new TimerTask() {
|
/external/setupcompat/main/java/com/google/android/setupcompat/logging/ |
Timer.java | 24 public final class Timer { 25 /** Creates a new instance of timer for the given {@code metricKey}. */ 26 public Timer(MetricKey metricKey) { 31 * Starts the timer and notes the current clock time. 33 * @throws IllegalStateException if the timer was stopped. 36 Preconditions.checkState(!isStopped(), "Timer cannot be started once stopped."); 41 "Timer instance was already started for: %s at [%s].", metricKey, startInNanos)); 53 Preconditions.checkState(isStarted(), "Timer must be started before it can be stopped."); 58 "Timer instance was already stopped for: %s at [%s]", metricKey, stopInNanos)); 84 private static final String TAG = "SetupCompat.Timer"; [all...] |