/external/swiftshader/src/Device/ |
Config.cpp | 18 #include "System/Timer.hpp" 67 static double fpsTime = sw::Timer::seconds(); 69 double time = sw::Timer::seconds();
|
/external/swiftshader/src/Main/ |
Config.cpp | 18 #include "Common/Timer.hpp" 67 static double fpsTime = sw::Timer::seconds(); 69 double time = sw::Timer::seconds();
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
Timer.java | 18 public final class Timer { 30 public Timer start() { 57 public Timer setTimingPeriod(long timingPeriod) { 73 public String toString(Timer other) {
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
Timer.java | 15 public final class Timer { 27 public Timer start() { 54 public Timer setTimingPeriod(long timingPeriod) { 70 public String toString(Timer other) {
|
/external/perfetto/include/perfetto/base/ |
task_runner.h | 79 Watchdog::Timer handle =
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
Timer.cpp | 1 //===-- Timer.cpp - Interval Timing Support -------------------------------===// 14 #include "llvm/Support/Timer.h" 52 cl::desc("File to append -stats and -timer output to"), 100 // Timer Implementation 103 void Timer::init(StringRef N) { 104 assert(TG == 0 && "Timer already initialized"); 111 void Timer::init(StringRef N, TimerGroup &tg) { 112 assert(TG == 0 && "Timer already initialized"); 119 Timer::~Timer() { [all...] |
/cts/tests/sensor/src/android/hardware/cts/helpers/ |
SuspendStateMonitor.java | 5 import java.util.Timer; 24 Timer sleepMonitoringTimer = new Timer();
|
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/Arm/ |
ArmV7ArchTimerSupport.S | 31 mrc p15, 0, r0, c14, c1, 0 @ Read CNTK_CTL (Timer PL1 Control Register)
35 mcr p15, 0, r0, c14, c1, 0 @ Write to CNTK_CTL (Timer PL1 Control Register)
39 mrc p15, 0, r0, c14, c2, 0 @ Read CNTP_TVAL (PL1 physical timer value register)
43 mcr p15, 0, r0, c14, c2, 0 @ Write to CNTP_TVAL (PL1 physical timer value register)
47 mrc p15, 0, r0, c14, c2, 1 @ Read CNTP_CTL (PL1 Physical Timer Control Register)
51 mcr p15, 0, r0, c14, c2, 1 @ Write to CNTP_CTL (PL1 Physical Timer Control Register)
55 mrc p15, 0, r0, c14, c3, 0 @ Read CNTV_TVAL (Virtual Timer Value register)
59 mcr p15, 0, r0, c14, c3, 0 @ Write to CNTV_TVAL (Virtual Timer Value register)
63 mrc p15, 0, r0, c14, c3, 1 @ Read CNTV_CTL (Virtual Timer Control Register)
67 mcr p15, 0, r0, c14, c3, 1 @ Write to CNTV_CTL (Virtual Timer Control Register) [all...] |
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Smm/DxeSmm/QncSmmDispatcher/QNC/ |
QNCSmmPeriodicTimer.c | 2 File to contain all the hardware specific stuff for the Periodical Timer dispatch protocol.
81 UINTN NumChildren; // number of children using this timer
83 UINTN CurrentSetting; // interval this timer is set at right now (index into interval table)
115 // Determine which timer this child is using
128 // (2) the timer interval table is corrupt
144 // Figure out which timer the child is requesting and
197 // The timer will be restarted on the "ClearSource" call.
222 SUPPORTED_TIMER Timer;
228 // Find the minimum required interval for each timer
230 for (Timer = (SUPPORTED_TIMER)0; Timer < NUM_TIMERS; Timer++) { [all...] |
/external/llvm/lib/Support/ |
Timer.cpp | 1 //===-- Timer.cpp - Interval Timing Support -------------------------------===// 14 #include "llvm/Support/Timer.h" 49 cl::desc("File to append -stats and -timer output to"), 95 // Timer Implementation 98 void Timer::init(StringRef N) { 102 void Timer::init(StringRef N, TimerGroup &tg) { 103 assert(!TG && "Timer already initialized"); 110 Timer::~Timer() { 138 void Timer::startTimer() [all...] |
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
TestPerf.java | 15 import org.unicode.cldr.util.Timer; 78 Timer t = new Timer(); 92 Timer t = new Timer(); 108 Timer t = new Timer(); 123 Timer t = new Timer(); 173 // logln(title + "\tTime:\t" + timer.toString(iterations)) 191 Timer timer = new Timer(); local [all...] |
TestReferenceStringSearch.java | 15 import org.unicode.cldr.util.Timer; 93 Timer icuTimer = new Timer(); 94 Timer newTimer = new Timer(); 95 Timer directTimer = new Timer(); 131 Timer newTimer, Timer icuTimer) { 162 Timer newTimer, Timer icuTimer) [all...] |
/external/python/cpython3/Lib/test/ |
test_timeit.py | 39 def wrap_timer(self, timer): 40 """Records 'timer' and returns self as callable timer.""" 41 self.saved_timer = timer 73 self.assertRaises(ValueError, timeit.Timer, stmt=None) 74 self.assertRaises(SyntaxError, timeit.Timer, stmt='return') 75 self.assertRaises(SyntaxError, timeit.Timer, stmt='yield') 76 self.assertRaises(SyntaxError, timeit.Timer, stmt='yield from ()') 77 self.assertRaises(SyntaxError, timeit.Timer, stmt='break') 78 self.assertRaises(SyntaxError, timeit.Timer, stmt='continue' [all...] |
/device/google/contexthub/firmware/os/core/ |
timer.c | 24 #include <timer.h> 32 #define MAX_INTERNAL_EVENTS 32 //also used for external app timer() calls 37 osLog(LOG_INFO, "%s " fmt, "[timer]", ##__VA_ARGS__); \ 42 struct Timer { 57 static struct Timer mTimers[MAX_TIMERS]; 73 static struct Timer *timFindTimerById(uint32_t timId) /* no locks taken. be careful what you do with this */ 89 static void timCallFunc(struct Timer *tim) 103 ERROR_PRINT("Could not enqueue private timer event\n"); 118 struct Timer *tim; 161 //we loop while loop does something, or while (if next timer exists), it is due by the time loop ends, or platform code fails to set an alarm to wake us for i [all...] |
/external/perfetto/src/base/ |
watchdog_posix.cc | 85 Watchdog::Timer Watchdog::CreateFatalTimer(uint32_t ms) { 87 return Watchdog::Timer(0); 89 return Watchdog::Timer(ms); 244 Watchdog::Timer::Timer(uint32_t ms) { 246 return; // No-op timer created when the watchdog is disabled. 259 Watchdog::Timer::~Timer() { 265 Watchdog::Timer::Timer(Timer&& other) noexcept [all...] |
/art/tools/dexfuzz/src/dexfuzz/fuzzers/ |
Fuzzer.java | 21 import dexfuzz.Timer; 73 private Timer totalTimer = new Timer("Total Time"); 74 private Timer timerDexInput = new Timer("DEX Input"); 75 private Timer timerProgGen = new Timer("Program Generation"); 76 private Timer timerMutation = new Timer("Mutation Time"); 77 private Timer timerDexOutput = new Timer("DEX Output") [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
ServRespTestCase.java | 18 import java.util.Timer; 34 private Timer mTimer; 42 mTimer = new Timer(true);
|
/developers/build/prebuilts/gradle/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/fragments/ |
CounterFragment.java | 31 import java.util.Timer; 41 private Timer mAnimationTimer; 76 mAnimationTimer = new Timer();
|
/developers/samples/android/wearable/wear/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/fragments/ |
CounterFragment.java | 31 import java.util.Timer; 41 private Timer mAnimationTimer; 76 mAnimationTimer = new Timer();
|
/development/samples/browseable/JumpingJack/src/com.example.android.wearable.jumpingjack/fragments/ |
CounterFragment.java | 31 import java.util.Timer; 41 private Timer mAnimationTimer; 76 mAnimationTimer = new Timer();
|
/device/linaro/bootloader/edk2/UefiCpuPkg/Library/MpInitLib/ |
DxeMpLib.c | 21 #include <Protocol/Timer.h>
197 This function is triggered by timer periodically to check the
375 // Set timer to check all APs status.
651 EFI_TIMER_ARCH_PROTOCOL *Timer;
656 // Locate Timer Arch Protocol
658 Status = gBS->LocateProtocol (&gEfiTimerArchProtocolGuid, NULL, (VOID **) &Timer);
660 Timer = NULL;
663 if (Timer != NULL) {
665 // Save current rate of DXE Timer
667 Timer->GetTimerPeriod (Timer, &TimerPeriod); [all...] |
/external/autotest/server/site_tests/firmware_ECPowerButton/ |
firmware_ECPowerButton.py | 7 from threading import Timer 53 Timer(3, self.servo.power_key, [0.001]).start() 65 Timer(wake_delay,
|
/external/deqp-deps/SPIRV-Tools/source/util/ |
timer.cpp | 17 #include "source/util/timer.h" 43 void Timer::Start() { 55 // Timer::Start(). 56 void Timer::Stop() { 67 void Timer::Report(const char* tag) {
|
/external/swiftshader/third_party/SPIRV-Tools/source/util/ |
timer.cpp | 17 #include "source/util/timer.h" 43 void Timer::Start() { 55 // Timer::Start(). 56 void Timer::Stop() { 67 void Timer::Report(const char* tag) {
|
/frameworks/av/media/libstagefright/include/media/stagefright/ |
MediaClock.h | 64 // request to set up a timer. The target time is |mediaTimeUs|, adjusted by 83 struct Timer { 84 Timer(const sp<AMessage> ¬ify, int64_t mediaTimeUs, int64_t adjustRealUs); 113 std::list<Timer> mTimers;
|