HomeSort by relevance Sort by last modified time
    Searched refs:Timer (Results 126 - 150 of 345) sorted by null

1 2 3 4 56 7 8 91011>>

  /device/generic/goldfish/dhcp/client/
dhcpclient.h 23 #include "timer.h"
93 Timer mT1, mT2;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
timeit.py 9 Library usage: see the Timer class.
16 -r/--repeat N: how many times to repeat the timer (default 3)
33 The difference in default timer function is because on Windows,
36 time() is much more precise. On either platform, the default timer
64 __all__ = ["Timer"]
71 # On Windows, the best timer is time.clock()
74 # On most other platforms the best timer is time.time()
78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt
95 """Create a timer function. Used if the "statement" is a callable."""
105 class Timer:
    [all...]
  /external/python/cpython2/Lib/
timeit.py 9 Library usage: see the Timer class.
16 -r/--repeat N: how many times to repeat the timer (default 3)
33 The difference in default timer function is because on Windows,
36 time() is much more precise. On either platform, the default timer
64 __all__ = ["Timer"]
71 # On Windows, the best timer is time.clock()
74 # On most other platforms the best timer is time.time()
78 # in Timer.__init__() depend on setup being indented 4 spaces and stmt
95 """Create a timer function. Used if the "statement" is a callable."""
105 class Timer
    [all...]
  /external/python/cpython3/Lib/
timeit.py 9 Library usage: see the Timer class.
16 -r/--repeat N: how many times to repeat the timer (default 5)
41 Timer
56 __all__ = ["Timer", "timeit", "repeat", "default_timer"]
66 # in Timer.__init__() depend on setup being indented 4 spaces and stmt
82 class Timer:
86 statement used for setup, and a timer function. Both statements
87 default to 'pass'; the timer function is platform-dependent (see
100 def __init__(self, stmt="pass", setup="pass", timer=default_timer,
103 self.timer = time
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
hlo_execution_profiler.h 40 // If profiling is enabled, start an execution timer running.
47 // execution timer.
50 // If profiling is enabled, starts a timer for a (sub)computation.
53 // If profiling is enabled stops the timer for a (sub)computation and records
57 // If profiling is enabled, starts a per-operation timer.
60 // If profiling is enabled, stops the per-operation timer and records the time
77 std::stack<std::unique_ptr<se::Timer>> timers_;
  /external/tensorflow/tensorflow/compiler/xla/service/interpreter/
executor.h 45 #include "tensorflow/stream_executor/timer.h"
155 bool AllocateTimer(Timer *timer) override { return true; }
156 void DeallocateTimer(Timer *timer) override {}
157 bool StartTimer(Stream *stream, Timer *timer) override;
158 bool StopTimer(Stream *stream, Timer *timer) override;
executor.cc 100 bool XlaInterpreterExecutor::StartTimer(Stream *stream, Timer *timer) {
101 dynamic_cast<host::HostTimer *>(timer->implementation())->Start(stream);
105 bool XlaInterpreterExecutor::StopTimer(Stream *stream, Timer *timer) {
106 dynamic_cast<host::HostTimer *>(timer->implementation())->Stop(stream);
  /external/tensorflow/tensorflow/stream_executor/host/
host_gpu_executor.h 134 bool AllocateTimer(Timer *timer) override { return true; }
136 void DeallocateTimer(Timer *timer) override {}
138 bool StartTimer(Stream *stream, Timer *timer) override;
140 bool StopTimer(Stream *stream, Timer *timer) override;
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/PL180MciDxe/
PL180Mci.c 91 // Set Data Length & Data Timer
316 UINTN Timer;
327 Timer = MMCI0_TIMEOUT * 100;
380 Timer = MMCI0_TIMEOUT * 60;
384 while (((Status & MCI_STATUS_TXDONE) != MCI_STATUS_TXDONE) && Timer) {
387 while (((Status & MCI_STATUS_CMD_DATAEND) != MCI_STATUS_CMD_DATAEND) && Timer) {
391 Timer--;
397 if (Timer == 0) {
445 // Set Data Length & Data Timer
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
SysCalls.c 766 EFI_EVENT Timer;
770 // Create the timer for the timeout
772 Timer = NULL;
779 &Timer );
782 // Start the timeout timer
786 Status = gBS->SetTimer ( Timer,
797 // Poll until an event is detected or the timer fires
842 if ( NULL != Timer ) {
843 Status = gBS->CheckEvent ( Timer );
858 // Stop the timer
    [all...]
  /external/skia/tests/
StrokerTest.cpp 55 skiatest::Timer timer; local
63 if (FLAGS_timeout && timer.elapsedMs() > MS_TEST_DURATION) {
70 skiatest::Timer timer; local
79 if (FLAGS_timeout && timer.elapsedMs() > MS_TEST_DURATION) {
87 skiatest::Timer timer; local
95 if (FLAGS_timeout && timer.elapsedMs() > MS_TEST_DURATION) {
102 skiatest::Timer timer local
154 skiatest::Timer timer; local
193 skiatest::Timer timer; local
233 skiatest::Timer timer; local
285 skiatest::Timer timer; local
343 skiatest::Timer timer; local
388 skiatest::Timer timer; local
    [all...]
  /external/skqp/tests/
StrokerTest.cpp 55 skiatest::Timer timer; local
63 if (FLAGS_timeout && timer.elapsedMs() > MS_TEST_DURATION) {
70 skiatest::Timer timer; local
79 if (FLAGS_timeout && timer.elapsedMs() > MS_TEST_DURATION) {
87 skiatest::Timer timer; local
95 if (FLAGS_timeout && timer.elapsedMs() > MS_TEST_DURATION) {
102 skiatest::Timer timer local
154 skiatest::Timer timer; local
193 skiatest::Timer timer; local
233 skiatest::Timer timer; local
285 skiatest::Timer timer; local
343 skiatest::Timer timer; local
388 skiatest::Timer timer; local
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
PlayerActivity.java 40 import java.util.Timer;
71 private Timer mSeekbarTimer;
72 private Timer mControllersTimer;
152 mSeekbarTimer = new Timer();
167 mControllersTimer = new Timer();
322 mControllersTimer = new Timer();
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Driver.c 170 if (DhcpSb->Timer != NULL) {
171 gBS->SetTimer (DhcpSb->Timer, TimerCancel, 0);
172 gBS->CloseEvent (DhcpSb->Timer);
174 DhcpSb->Timer = NULL;
226 // Create various resources, UdpIo, Timer, and get Mac address
233 &DhcpSb->Timer
328 Status = gBS->SetTimer (DhcpSb->Timer, TimerPeriodic, TICKS_PER_SECOND);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Mtftp4Dxe/
Mtftp4Driver.c 165 MtftpSb->Timer = NULL;
172 // Create the timer and a udp to be notified when UDP is uninstalled
179 &MtftpSb->Timer
188 // Create the timer used to time out the procedure which is used to
199 gBS->CloseEvent (MtftpSb->Timer);
214 gBS->CloseEvent (MtftpSb->Timer);
237 gBS->CloseEvent (MtftpSb->Timer);
291 Status = gBS->SetTimer (MtftpSb->Timer, TimerPeriodic, TICKS_PER_SECOND);
  /external/cldr/tools/java/org/unicode/cldr/util/
DtdDataCheck.java 170 Timer timer = new Timer(); local
173 timer.start();
180 timer.stop();
181 System.out.println("Time: " + timer);
235 timer.start();
238 timer.stop();
239 System.out.println("Time: " + timer);
306 Timer timer = new Timer() local
322 Timer timer = new Timer(); local
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseTimerLibLocalApic/Ia32/
X86LocalApicTimerInitialize.asm 16 ; Initialize Local Apic Timer
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseTimerLibLocalApic/X64/
X86LocalApicTimerInitialize.asm 16 ; Initialize Local Apic Timer
  /device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/
DnsDriver.h 41 EFI_EVENT Timer; /// Ticking timer for DNS cache update.
65 EFI_EVENT Timer; /// Ticking timer for packet retransmission.
  /external/autotest/server/site_tests/firmware_ECLidSwitch/
firmware_ECLidSwitch.py 5 from threading import Timer
17 t = Timer(seconds, f, args, kargs)
  /external/swiftshader/src/D3D9/
Direct3DQuery9.cpp 18 #include "Timer.hpp"
175 timestamp = sw::Timer::counter();
238 case D3DQUERYTYPE_TIMESTAMPFREQ: *(UINT64*)data = sw::Timer::frequency(); break; // FIXME: Verify behaviour
  /external/swiftshader/src/Main/
FrameBufferX11.cpp 18 #include "Common/Timer.hpp"
159 static double fpsTime = sw::Timer::seconds();
162 double time = sw::Timer::seconds();
  /external/swiftshader/src/WSI/
FrameBufferX11.cpp 18 #include "System/Timer.hpp"
159 static double fpsTime = sw::Timer::seconds();
162 double time = sw::Timer::seconds();
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/WatchdogTimerDxe/
WatchdogTimer.c 2 Implementation of Watchdog Timer Architectural Protocol using UEFI APIs.
18 // Handle for the Watchdog Timer Architectural Protocol instance produced by this driver
23 // The Watchdog Timer Architectural Protocol instance produced by this driver
32 // The watchdog timer period in 100 ns units
37 // The notification function to call if the watchdig timer fires
42 // The one-shot timer event that is armed when the watchdog timer is enabled
48 Notification function that is called if the watchdog timer is fired.
50 Notification function for the one-shot timer event that was signaled
51 when the watchdog timer expired. If a handler has been registered with
    [all...]
  /external/libkmsxx/py/tests/
sync.py 14 class Timer(object):
22 print("adding timer %f" % self.timeout)
24 self.timers.sort(key=lambda timer: timer.timeout)
30 timer = _class.timers[0]
31 if timer.timeout > clk:
35 print("fireing timer %f" % timer.timeout)
36 timer.callback(timer.data
    [all...]

Completed in 744 milliseconds

1 2 3 4 56 7 8 91011>>