| /external/chromium_org/third_party/libsrtp/srtp/test/ |
| replay_driver.c | 231 clock_t timer; local 239 timer = clock(); 254 timer = clock() - timer; 256 return (double) CLOCKS_PER_SEC * REPLAY_NUM_TRIALS / timer;
|
| /external/chromium_org/third_party/skia/bench/ |
| ResultsWriter.h | 34 // then config and timer can be called multiple times to record runs. 41 virtual void timer(const char name[], double ms) = 0; 68 virtual void timer(const char name[], double ms) { function in class:LoggerResultsWriter 130 virtual void timer(const char name[], double ms) { function in class:JSONResultsWriter 173 virtual void timer(const char name[], double ms) { function in class:MultiResultsWriter 175 writers[i]->timer(name, ms);
|
| TimerData.cpp | 25 bool TimerData::appendTimes(BenchTimer* timer) { 26 SkASSERT(timer != NULL); 31 fWallTimes[fCurrTiming] = timer->fWall; 32 fTruncatedWallTimes[fCurrTiming] = timer->fTruncatedWall; 33 fCpuTimes[fCurrTiming] = timer->fCpu; 34 fTruncatedCpuTimes[fCurrTiming] = timer->fTruncatedCpu; 35 fGpuTimes[fCurrTiming] = timer->fGpu;
|
| /external/eigen/bench/ |
| benchGeometry.cpp | 65 BenchTimer timer; local 66 timer.reset(); 69 timer.start(); 72 timer.stop(); 74 cout << setprecision(4) << fixed << timer.value() << "s " << endl;;
|
| sparse_randomsetter.cpp | 33 timer.reset(); \ 35 timer.start(); \ 38 } timer.stop(); }
|
| /external/skia/bench/ |
| ResultsWriter.h | 34 // then config and timer can be called multiple times to record runs. 41 virtual void timer(const char name[], double ms) = 0; 68 virtual void timer(const char name[], double ms) { function in class:LoggerResultsWriter 130 virtual void timer(const char name[], double ms) { function in class:JSONResultsWriter 173 virtual void timer(const char name[], double ms) { function in class:MultiResultsWriter 175 writers[i]->timer(name, ms);
|
| /external/srtp/crypto/test/ |
| auth_driver.c | 169 clock_t timer; local 188 timer = clock(); 192 timer = clock() - timer; 197 return (double) NUM_TRIALS * 8 * msg_len_octets * CLOCKS_PER_SEC / timer;
|
| /external/srtp/test/ |
| rdbx_driver.c | 318 clock_t timer; local 327 timer = clock(); 338 timer = clock() - timer; 344 return (double) CLOCKS_PER_SEC * num_trials / timer;
|
| /external/chromium_org/third_party/tcmalloc/chromium/src/ |
| profile-handler.cc | 66 // Callback function to be invoked on receiving a profile timer interrupt. 77 // have a separate interval timer for each thread, this function starts the 78 // timer for the current thread. 85 // unconditionally start the timer. However, if this function determines 86 // that timers are shared, then it will stop the timer if no callbacks are 90 // Registers a callback routine to receive profile timer ticks. The returned 103 // Unregisters all the callbacks, stops the timer if shared, disables the 149 // No timer initialization attempted yet. 151 // First thread has registered and set timer. 185 // Starts the interval timer. If the thread library shares timers betwee 423 struct itimerval timer; local 434 struct itimerval timer; local [all...] |
| /external/chromium_org/third_party/tcmalloc/vendor/src/ |
| profile-handler.cc | 66 // Callback function to be invoked on receiving a profile timer interrupt. 77 // have a separate interval timer for each thread, this function starts the 78 // timer for the current thread. 85 // unconditionally start the timer. However, if this function determines 86 // that timers are shared, then it will stop the timer if no callbacks are 90 // Registers a callback routine to receive profile timer ticks. The returned 103 // Unregisters all the callbacks, stops the timer if shared, disables the 149 // No timer initialization attempted yet. 151 // First thread has registered and set timer. 185 // Starts the interval timer. If the thread library shares timers betwee 423 struct itimerval timer; local 434 struct itimerval timer; local [all...] |
| /external/chromium_org/chrome/renderer/net/ |
| net_error_helper_core_unittest.cc | 16 #include "base/timer/mock_timer.h" 17 #include "base/timer/timer.h" 172 // destructed, since core_ takes ownership of the timer. 178 core_->set_timer_for_testing(scoped_ptr<base::Timer>(timer_)); 226 base::MockTimer* timer() { return timer_; } function in class:__anon10369::NetErrorHelperCoreTest [all...] |
| /external/eigen/bench/spbench/ |
| spbenchsolver.h | 222 BenchTimer timer; local 223 timer.reset(); 224 timer.start(); 231 timer.stop(); 232 compute_time = timer.value(); 234 statbuf << " <COMPUTE> " << timer.value() << "</COMPUTE>\n"; 235 std::cout<< "COMPUTE TIME : " << timer.value() <<std::endl; 237 timer.reset(); 238 timer.start(); 245 timer.stop() [all...] |
| /external/skia/tools/timer/ |
| TimerData.cpp | 9 #include "Timer.h" 21 bool TimerData::appendTimes(Timer* timer) { 22 SkASSERT(timer != NULL); 27 fWallTimes[fCurrTiming] = timer->fWall; 28 fTruncatedWallTimes[fCurrTiming] = timer->fTruncatedWall; 29 fCpuTimes[fCurrTiming] = timer->fCpu; 30 fTruncatedCpuTimes[fCurrTiming] = timer->fTruncatedCpu; 31 fGpuTimes[fCurrTiming] = timer->fGpu;
|
| /external/chromium_org/remoting/host/ |
| gnubby_socket.cc | 8 #include "base/timer/timer.h" 27 timer_.reset(new base::Timer(false, false)); 86 void GnubbySocket::SetTimerForTesting(scoped_ptr<base::Timer> timer) { 87 timer->Start(FROM_HERE, timer_->GetCurrentDelay(), timer_->user_task()); 88 timer_ = timer.Pass();
|
| gnubby_socket.h | 16 class Timer; 53 // Sets a timer for testing. 54 void SetTimerForTesting(scoped_ptr<base::Timer> timer); 63 // Resets the socket activity timer. 72 // The activity timer. 73 scoped_ptr<base::Timer> timer_;
|
| /external/chromium_org/third_party/WebKit/Source/core/dom/ |
| ScriptRunner.cpp | 112 void ScriptRunner::timerFired(Timer<ScriptRunner>* timer) 114 ASSERT_UNUSED(timer, timer == &m_timer);
|
| /external/chromium_org/third_party/WebKit/Source/core/loader/ |
| TextTrackLoader.cpp | 54 void TextTrackLoader::cueLoadTimerFired(Timer<TextTrackLoader>* timer) 56 ASSERT_UNUSED(timer, timer == &m_cueLoadTimer);
|
| /external/chromium_org/cc/debug/ |
| rasterize_and_record_benchmark.cc | 126 // Run for a minimum amount of time to avoid problems with timer 128 LapTimer timer(kWarmupRuns, 134 timer.NextLap(); 135 } while (!timer.HasTimeLimitExpired()); 137 base::TimeDelta::FromMillisecondsD(timer.MsPerLap());
|
| /external/chromium_org/third_party/skia/tools/ |
| bench_playback.cpp | 22 typedef WallTimer Timer; 81 Timer timer; local 84 // We assume timer overhead (typically, ~30ns) is insignificant 86 timer.start(timescale()); 88 timer.end(); 89 samples[i] = timer.fWall;
|
| /external/qemu/include/hw/mips/ |
| mips.h | 34 void *rc4030_init(qemu_irq timer, qemu_irq jazz_bus,
|
| /external/skia/tools/ |
| bench_playback.cpp | 20 #include "Timer.h" 79 WallTimer timer; local 83 // We assume timer overhead (typically, ~30ns) is insignificant 85 timer.start(); 87 timer.end(); 88 samples[i] = timer.fWall * scale;
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/ |
| asoundlib.h | 51 #include <alsa/timer.h>
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/ |
| asoundlib.h | 51 #include <alsa/timer.h>
|
| /external/chromium_org/base/metrics/ |
| stats_counters.h | 129 // A StatsCounterTimer is a StatsCounter which keeps a timer during 134 // Constructs and starts the timer. 138 // Start the timer. 141 // Stop the timer and record the results. 144 // Returns true if the timer is running. 158 // A StatsRate is a timer that keeps a count of the number of intervals added so 163 // Constructs and starts the timer. 175 // Helper class for scoping a timer or rate. 178 explicit StatsScope<T>(T& timer) 179 : timer_(timer) { [all...] |
| /external/chromium_org/chrome/browser/sync/glue/ |
| browser_thread_model_worker_unittest.cc | 12 #include "base/timer/timer.h" 36 OneShotTimer<SyncBrowserThreadModelWorkerTest>* timer() { return &timer_; } function in class:browser_sync::__anon9314::SyncBrowserThreadModelWorkerTest 48 timer()->Start( 59 timer_.Stop(); // Stop the failure timer so the test succeeds.
|