Searched defs:elapsed (Results 1 - 25 of 103) sorted by relevance

12345

/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dprivate_api_base.cc29 int64 elapsed = (base::Time::Now() - start_time_).InMilliseconds(); local
32 "%s[%d] %s. (elapsed time: %sms)",
36 base::Int64ToString(elapsed).c_str());
37 } else if (elapsed >= kSlowOperationThresholdMs) {
40 "PEFORMANCE WARNING: %s[%d] was slow. (elapsed time: %sms)",
43 base::Int64ToString(elapsed).c_str());
/external/chromium_org/components/domain_reliability/
H A Dbeacon.h46 base::TimeDelta elapsed; member in struct:domain_reliability::DomainReliabilityBeacon
/external/chromium_org/third_party/icu/source/test/perf/ucnvavailperf/
H A Ducnvavailperf.cpp117 double elapsed = utimer_getElapsedSeconds(&start_time); local
119 printf("ucnv_countAvailable() took %g seconds to figure this out.\n", elapsed);
/external/chromium_org/third_party/libjpeg_turbo/
H A Drrtimer.h66 double elapsed(void) function in class:rrtimer
/external/chromium_org/third_party/ots/test/
H A Dperf.cc61 struct timeval start, end, elapsed; local
72 timersub(&end, &start, &elapsed);
75 = ((elapsed.tv_sec * 1000 * 1000) + elapsed.tv_usec) / num_repeat;
/external/icu/icu4c/source/test/perf/ucnvavailperf/
H A Ducnvavailperf.cpp117 double elapsed = utimer_getElapsedSeconds(&start_time); local
119 printf("ucnv_countAvailable() took %g seconds to figure this out.\n", elapsed);
/external/srec/portable/src/
H A Dpcputimer.c37 asr_uint32_t elapsed; member in struct:PCPUTimer_t
55 tmp->elapsed = 0;
69 * Starts the timer. This sets the reference time from which all new elapsed
70 * time are computed. This does not reset the elapsed time to 0. This is
110 timer->elapsed =
119 * Returns the timer elapsed time. If the Timer is in the stopped state,
122 * elapsed time since the last time PCPUTimerStart() was called.
124 ESR_ReturnCode PCPUTimerGetElapsed(PCPUTimer *timer, asr_uint32_t *elapsed) argument
126 if (timer == NULL || elapsed == NULL) return ESR_INVALID_ARGUMENT;
138 *elapsed
169 asr_uint32_t elapsed; member in struct:PCPUTimer_t
221 PCPUTimerGetElapsed(PCPUTimer *timer, asr_uint32_t *elapsed) argument
[all...]
H A Dptimer.c38 LARGE_INTEGER elapsed; member in struct:PTimer_t
64 tmp->elapsed.QuadPart = 0;
77 * Starts the timer. This sets the reference time from which all new elapsed
78 * time are computed. This does not reset the elapsed time to 0. This is
99 timer->elapsed.QuadPart += now.QuadPart - timer->RefTime.QuadPart;
106 * Returns the timer elapsed time. If the Timer is in the stopped state,
109 * elapsed time since the last time PTimerStart() was called.
111 ESR_ReturnCode PTimerGetElapsed(PTimer *timer, asr_uint32_t* elapsed) argument
113 if (timer == NULL || elapsed == NULL)
120 *elapsed
159 asr_uint32_t elapsed; member in struct:PTimer_t
232 PTimerGetElapsed(PTimer *timer, asr_uint32_t* elapsed) argument
[all...]
/external/stlport/test/unit/cppunit/
H A Dcppunit_timer.h77 LARGE_INTEGER elapsed; local
78 elapsed.HighPart = m_stop.HighPart - m_start.HighPart;
79 elapsed.LowPart = m_stop.LowPart - m_start.LowPart;
80 return (double)elapsed.QuadPart / (double)m_frequency.QuadPart * 1000;
/external/chromium_org/chrome/browser/chromeos/geolocation/
H A Dsimple_geolocation_provider.cc62 const base::TimeDelta elapsed) {
65 callback.Run(geoposition, server_error, elapsed);
57 OnGeolocationResponse( SimpleGeolocationRequest* request, SimpleGeolocationRequest::ResponseCallback callback, const Geoposition& geoposition, bool server_error, const base::TimeDelta elapsed) argument
/external/chromium_org/third_party/skia/tools/timer/
H A DSysTimer_mach.cpp58 uint64_t elapsed = end_wall - fStartWall; local
63 uint64_t elapsedNano = elapsed * sTimebaseInfo.numer / sTimebaseInfo.denom;
/external/chromium_org/v8/src/base/platform/
H A Delapsed-timer.h50 // Restarts the timer and returns the time elapsed since the previous start.
51 // This method is equivalent to obtaining the elapsed time with |Elapsed()|
58 TimeDelta elapsed = ticks - start_ticks_; local
59 DCHECK(elapsed.InMicroseconds() >= 0);
62 return elapsed;
65 // Returns the time elapsed since the previous start. This method may only
69 TimeDelta elapsed = Now() - start_ticks_; local
70 DCHECK(elapsed.InMicroseconds() >= 0);
71 return elapsed;
74 // Returns |true| if the specified |time_delta| has elapsed sinc
[all...]
/external/eigen/bench/btl/generic_bench/timers/
H A Dportable_timer.hh68 double elapsed() { function in class:Portable_Timer
74 double user_time() { return elapsed(); }
125 double elapsed() function in class:Portable_Timer
/external/fio/
H A Dtime.c101 unsigned long elapsed; local
108 elapsed = utime_since_now(&tv);
110 if (elapsed > ns_granularity)
111 ns_granularity = elapsed;
/external/qemu/distrib/sdl-1.2.15/src/timer/riscos/
H A DSDL_systimer.c86 Uint32 now,then,elapsed; local
116 elapsed = (now-then);
118 if ( elapsed >= ms ) {
121 ms -= elapsed;
/external/skia/tools/timer/
H A DSysTimer_mach.cpp58 uint64_t elapsed = end_wall - fStartWall; local
63 uint64_t elapsedNano = elapsed * sTimebaseInfo.numer / sTimebaseInfo.denom;
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_service.cc75 base::TimeDelta elapsed = base::Time::Now() - start_time; local
79 UMA_HISTOGRAM_LONG_TIMES("Startup.AppListFirstPaintColdStart", elapsed);
88 UMA_HISTOGRAM_LONG_TIMES("Startup.AppListFirstPaintWarmStart", elapsed);
93 elapsed);
106 base::TimeDelta elapsed = base::Time::Now() - start_time;
110 UMA_HISTOGRAM_LONG_TIMES("Startup.ShowAppListColdStart", elapsed);
113 UMA_HISTOGRAM_LONG_TIMES("Startup.ShowAppListWarmStart", elapsed);
116 UMA_HISTOGRAM_LONG_TIMES("Startup.ShowAppListWarmStartFast", elapsed);
/external/chromium_org/mojo/system/
H A Dsimple_dispatcher_unittest.cc185 base::TimeDelta elapsed = stopwatch.Elapsed(); local
186 EXPECT_GT(elapsed, (2 - 1) * test::EpsilonTimeout());
187 EXPECT_LT(elapsed, (2 + 1) * test::EpsilonTimeout());
386 base::TimeDelta elapsed = stopwatch.Elapsed(); local
387 EXPECT_GT(elapsed, (2 - 1) * test::EpsilonTimeout());
388 EXPECT_LT(elapsed, (2 + 1) * test::EpsilonTimeout());
415 elapsed = stopwatch.Elapsed();
416 EXPECT_GT(elapsed, (2 - 1) * test::EpsilonTimeout());
417 EXPECT_LT(elapsed, (2 + 1) * test::EpsilonTimeout());
440 elapsed
[all...]
H A Dwaiter_unittest.cc44 base::TimeDelta* elapsed) {
51 *elapsed = elapsed_;
68 base::TimeDelta elapsed; variable
72 elapsed = stopwatch.Elapsed();
79 elapsed_ = elapsed;
98 base::TimeDelta elapsed; local
107 thread.WaitUntilDone(&result, &context, &elapsed);
110 EXPECT_LT(elapsed, test::EpsilonTimeout());
118 thread.WaitUntilDone(&result, &context, &elapsed);
121 EXPECT_LT(elapsed, tes
42 WaitUntilDone(MojoResult* result, uint32_t* context, base::TimeDelta* elapsed) argument
214 base::TimeDelta elapsed; local
249 base::TimeDelta elapsed; local
[all...]
/external/lldb/tools/debugserver/source/
H A DDNBTimer.h93 // Return the number of microseconds elapsed between now and the
104 uint64_t elapsed = now_usec - this_usec; local
108 return elapsed;
/external/chromium_org/chrome/browser/net/
H A Ddns_probe_service.cc79 void HistogramProbe(DnsProbeStatus status, base::TimeDelta elapsed) { argument
84 UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.ProbeDuration", elapsed);
/external/chromium_org/chrome/common/extensions/docs/examples/api/cookies/
H A Dmanager.js13 this.elapsed = function() {
/external/chromium_org/components/policy/core/common/cloud/
H A Dcloud_policy_refresh_scheduler.cc96 base::TimeDelta elapsed = base::Time::NowFromSystemTime() - creation_time_; local
98 elapsed);
/external/chromium_org/components/visitedlink/test/
H A Dvisitedlink_perftest.cc160 TimeDelta elapsed = cold_timer.Elapsed(); local
163 cold_load_times.push_back(elapsed.InMillisecondsF());
177 TimeDelta elapsed = hot_timer.Elapsed(); local
180 hot_load_times.push_back(elapsed.InMillisecondsF());
/external/chromium_org/media/audio/mac/
H A Daudio_input_mac.cc221 base::TimeDelta elapsed = base::TimeTicks::Now() - last_fill_; local
223 if (elapsed < kMinDelay)
224 base::PlatformThread::Sleep(kMinDelay - elapsed);

Completed in 531 milliseconds

12345