/external/libchrome/base/timer/ |
D | timer.cc | 26 explicit BaseTimerTaskInternal(Timer* timer) in BaseTimerTaskInternal() 48 Timer* timer = timer_; in Run() 57 Timer* timer_; 62 Timer::Timer(bool retain_user_task, bool is_repeating) in Timer() function in base::Timer 63 : Timer(retain_user_task, is_repeating, nullptr) {} in Timer() 65 Timer::Timer(bool retain_user_task, in Timer() function in base::Timer 80 Timer::Timer(const Location& posted_from, in Timer() function in base::Timer 84 : Timer(posted_from, delay, user_task, is_repeating, nullptr) {} in Timer() 86 Timer::Timer(const Location& posted_from, in Timer() function in base::Timer 103 Timer::~Timer() { in ~Timer() [all …]
|
D | timer.h | 85 class BASE_EXPORT Timer { 91 Timer(bool retain_user_task, bool is_repeating); 92 Timer(bool retain_user_task, bool is_repeating, const TickClock* tick_clock); 96 Timer(const Location& posted_from, 100 Timer(const Location& posted_from, 106 virtual ~Timer(); 234 DISALLOW_COPY_AND_ASSIGN(Timer); 239 class BASE_EXPORT OneShotTimer : public Timer { 243 : Timer(false, false, tick_clock) {} in OneShotTimer() 252 class RepeatingTimer : public Timer { [all …]
|
/external/angle/third_party/spirv-tools/src/source/util/ |
D | timer.h | 52 spvtools::utils::ScopedTimer<spvtools::utils::Timer> timer##__LINE__( \ 94 class Timer { 96 Timer(std::ostream* out, bool measure_mem_usage = false) 169 virtual ~Timer() {} in ~Timer() 294 class CumulativeTimer : public Timer { 297 : Timer(out, measure_mem_usage), in Timer() function 308 Timer::Stop(); in Stop() 310 if (cpu_time_ >= 0 && Timer::CPUTime() >= 0) in Stop() 311 cpu_time_ += Timer::CPUTime(); in Stop() 315 if (wall_time_ >= 0 && Timer::WallTime() >= 0) in Stop() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/util/ |
D | timer.h | 52 spvtools::utils::ScopedTimer<spvtools::utils::Timer> timer##__LINE__( \ 94 class Timer { 96 Timer(std::ostream* out, bool measure_mem_usage = false) 169 virtual ~Timer() {} in ~Timer() 294 class CumulativeTimer : public Timer { 297 : Timer(out, measure_mem_usage), in Timer() function 308 Timer::Stop(); in Stop() 310 if (cpu_time_ >= 0 && Timer::CPUTime() >= 0) in Stop() 311 cpu_time_ += Timer::CPUTime(); in Stop() 315 if (wall_time_ >= 0 && Timer::WallTime() >= 0) in Stop() [all …]
|
/external/deqp-deps/SPIRV-Tools/source/util/ |
D | timer.h | 52 spvtools::utils::ScopedTimer<spvtools::utils::Timer> timer##__LINE__( \ 94 class Timer { 96 Timer(std::ostream* out, bool measure_mem_usage = false) 169 virtual ~Timer() {} in ~Timer() 294 class CumulativeTimer : public Timer { 297 : Timer(out, measure_mem_usage), in Timer() function 308 Timer::Stop(); in Stop() 310 if (cpu_time_ >= 0 && Timer::CPUTime() >= 0) in Stop() 311 cpu_time_ += Timer::CPUTime(); in Stop() 315 if (wall_time_ >= 0 && Timer::WallTime() >= 0) in Stop() [all …]
|
/external/llvm/include/llvm/Support/ |
D | Timer.h | 22 class Timer; variable 78 class Timer { 86 Timer **Prev, *Next; // Doubly linked list of timers in the group. 88 explicit Timer(StringRef N) : TG(nullptr) { init(N); } in Timer() function 89 Timer(StringRef N, TimerGroup &tg) : TG(nullptr) { init(N, tg); } in Timer() function 90 Timer(const Timer &RHS) : TG(nullptr) { in Timer() function 93 const Timer &operator=(const Timer &T) { 97 ~Timer(); 100 explicit Timer() : TG(nullptr) {} in Timer() function 137 Timer *T; [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | Timer.h | 23 class Timer; variable 77 class Timer { 86 Timer **Prev; ///< Pointer to \p Next of previous timer in group. 87 Timer *Next; ///< Next timer in the group. 89 explicit Timer(StringRef Name, StringRef Description) { in Timer() function 92 Timer(StringRef Name, StringRef Description, TimerGroup &tg) { in Timer() function 95 Timer(const Timer &RHS) { in Timer() function 98 const Timer &operator=(const Timer &T) { 102 ~Timer(); 105 explicit Timer() {} in Timer() function [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Timer.h | 22 class Timer; variable 76 class Timer { 85 Timer **Prev; ///< Pointer to \p Next of previous timer in group. 86 Timer *Next; ///< Next timer in the group. 88 explicit Timer(StringRef Name, StringRef Description) { in Timer() function 91 Timer(StringRef Name, StringRef Description, TimerGroup &tg) { in Timer() function 94 Timer(const Timer &RHS) { in Timer() function 97 const Timer &operator=(const Timer &T) { 101 ~Timer(); 104 explicit Timer() {} in Timer() function [all …]
|
/external/iperf3/src/ |
D | timer.c | 36 static Timer* timers = NULL; 37 static Timer* free_timers = NULL; 61 list_add( Timer* t ) in list_add() 63 Timer* t2; in list_add() 64 Timer* t2prev; in list_add() 100 list_remove( Timer* t ) in list_remove() 112 list_resort( Timer* t ) in list_resort() 121 Timer* 127 Timer* t; in tmr_create() 135 t = (Timer*) malloc( sizeof(Timer) ); in tmr_create() [all …]
|
/external/perfetto/include/perfetto/ext/base/ |
D | watchdog_posix.h | 45 class Timer { 47 ~Timer(); 48 Timer(Timer&&) noexcept; 53 explicit Timer(uint32_t ms); 54 Timer(const Timer&) = delete; 55 Timer& operator=(const Timer&) = delete; 65 Timer CreateFatalTimer(uint32_t ms);
|
D | watchdog_noop.h | 27 class Timer { 30 Timer() {} in Timer() function 31 Timer(const Timer&) {} in Timer() argument 32 ~Timer() {} in ~Timer() 38 Timer CreateFatalTimer(uint32_t /*ms*/) { return Timer(); } in CreateFatalTimer()
|
/external/swiftshader/src/Common/ |
D | Timer.cpp | 40 Timer::Timer() in Timer() function in sw::Timer 44 Timer::~Timer() in ~Timer() 48 double Timer::seconds() in seconds() 59 int64_t Timer::ticks() in ticks() 74 int64_t Timer::counter() in counter() 87 int64_t Timer::frequency() in frequency()
|
/external/swiftshader/src/System/ |
D | Timer.cpp | 40 Timer::Timer() in Timer() function in sw::Timer 44 Timer::~Timer() in ~Timer() 48 double Timer::seconds() in seconds() 59 int64_t Timer::ticks() in ticks() 77 int64_t Timer::counter() in counter() 90 int64_t Timer::frequency() in frequency()
|
/external/tensorflow/tensorflow/stream_executor/ |
D | timer.cc | 26 Timer::Timer(StreamExecutor *parent) in Timer() function in stream_executor::Timer 30 Timer::~Timer() { parent_->DeallocateTimer(this); } in ~Timer() 32 uint64 Timer::Microseconds() const { return implementation_->Microseconds(); } in Microseconds() 34 uint64 Timer::Nanoseconds() const { return implementation_->Nanoseconds(); } in Nanoseconds()
|
D | timer.h | 38 class Timer { 41 explicit Timer(StreamExecutor *parent); 45 ~Timer(); 68 SE_DISALLOW_COPY_AND_ASSIGN(Timer);
|
/external/angle/util/ |
D | Timer.cpp | 13 Timer::Timer() : mRunning(false), mStartTime(0), mStopTime(0) {} in Timer() function in Timer 15 void Timer::start() in start() 21 void Timer::stop() in stop() 27 double Timer::getElapsedTime() const in getElapsedTime()
|
/external/python/cpython3/Lib/test/ |
D | test_timeit.py | 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') 79 self.assertRaises(SyntaxError, timeit.Timer, stmt='from timeit import *') 82 self.assertRaises(ValueError, timeit.Timer, setup=None) 83 self.assertRaises(SyntaxError, timeit.Timer, setup='return') 84 self.assertRaises(SyntaxError, timeit.Timer, setup='yield') [all …]
|
/external/llvm/lib/Support/ |
D | Timer.cpp | 98 void Timer::init(StringRef N) { in init() 102 void Timer::init(StringRef N, TimerGroup &tg) { in init() 110 Timer::~Timer() { in ~Timer() 138 void Timer::startTimer() { in startTimer() 144 void Timer::stopTimer() { in stopTimer() 151 void Timer::clear() { in clear() 185 typedef StringMap<Timer> Name2TimerMap; 196 Timer &get(StringRef Name, StringRef GroupName) { in get() 204 Timer &T = GroupEntry.second[Name]; in get() 216 static Timer &getNamedRegionTimer(StringRef Name) { in getNamedRegionTimer() [all …]
|
/external/skqp/tools/viewer/ |
D | StatsLayer.h | 20 typedef int Timer; typedef 22 Timer addTimer(const char* label, SkColor color, SkColor labelColor = 0); 23 void beginTiming(Timer); 24 void endTiming(Timer); 25 double getLastTime(Timer);
|
/external/perfetto/src/base/ |
D | watchdog_posix.cc | 101 Watchdog::Timer Watchdog::CreateFatalTimer(uint32_t ms) { in CreateFatalTimer() 103 return Watchdog::Timer(0); in CreateFatalTimer() 105 return Watchdog::Timer(ms); in CreateFatalTimer() 250 Watchdog::Timer::Timer(uint32_t ms) { in Timer() function in perfetto::base::Watchdog::Timer 265 Watchdog::Timer::~Timer() { in ~Timer() 271 Watchdog::Timer::Timer(Timer&& other) noexcept { in Timer() function in perfetto::base::Watchdog::Timer
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestPerf.java | 15 import org.unicode.cldr.util.Timer; 78 Timer t = new Timer(); in TestXPathParts() 92 Timer t = new Timer(); in TestMutableXPathParts() 107 Timer t = new Timer(); in TestFastFrozenXPathParts() 122 Timer t = new Timer(); in TestFastXPathParts() 181 Timer timer = new Timer(); in checkCost()
|
/external/mockito/src/test/java/org/mockito/internal/util/ |
D | TimerTest.java | 22 Timer timer = new Timer(duration); in should_return_true_if_task_is_in_acceptable_time_bounds() 34 Timer timer = new Timer(0); in should_return_false_when_time_run_out() 48 new Timer(-1); in should_throw_friendly_reminder_exception_when_duration_is_negative()
|
/external/tcpdump/tests/ |
D | ospf3_ah-vv.out | 4 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 9 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 14 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 20 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 26 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 32 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 38 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 48 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 57 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 103 Hello Timer 10s, Dead Timer 40s, Interface-ID 0.0.0.5, Priority 1 [all …]
|
/external/catch2/include/internal/ |
D | catch_timer.cpp | 57 void Timer::start() { in start() 60 auto Timer::getElapsedNanoseconds() const -> uint64_t { in getElapsedNanoseconds() 63 auto Timer::getElapsedMicroseconds() const -> uint64_t { in getElapsedMicroseconds() 66 auto Timer::getElapsedMilliseconds() const -> unsigned int { in getElapsedMilliseconds() 69 auto Timer::getElapsedSeconds() const -> double { in getElapsedSeconds()
|
/external/skqp/tests/ |
D | Test.cpp | 57 skiatest::Timer::Timer() : fStartNanos(SkTime::GetNSecs()) {} in Timer() function in skiatest::Timer 59 double skiatest::Timer::elapsedNs() const { in elapsedNs() 63 double skiatest::Timer::elapsedMs() const { return this->elapsedNs() * 1e-6; } in elapsedMs() 65 SkMSec skiatest::Timer::elapsedMsInt() const { in elapsedMsInt()
|