HomeSort by relevance Sort by last modified time
    Searched refs:elapsed (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/base/debug/
trace_event_unittest.h 10 // Sleep until HighResNow has advanced by at least |elapsed|.
11 void HighResSleepForTraceTest(base::TimeDelta elapsed);
  /art/test/002-sleep/src/
Main.java 13 long elapsed = System.currentTimeMillis() - start; local
14 long offBy = Math.abs(elapsed - millis);
19 System.out.println("Actually slept about " + elapsed + " msec...");
  /external/chromium_org/mojo/system/
waiter_unittest.cc 44 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);
214 base::TimeDelta elapsed; local
249 base::TimeDelta elapsed; local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
timer.py 24 '''Returns a new stopped Timer with this Timer's elapsed time + |other|'s.
35 '''Returns the elapsed time as a string in a pretty format; as a whole
40 elapsed = self._elapsed
41 if elapsed < 1:
42 elapsed = int(elapsed * 1000)
45 elapsed = int(elapsed)
46 unit = 'second' if elapsed == 1 else 'seconds'
47 return '%s %s' % (elapsed, unit
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_base.cc 29 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/netperf/
netcpu.h 16 extern float calc_cpu_util_internal(float elapsed);
  /external/chromium_org/media/base/
scoped_histogram_timer.h 25 base::TimeDelta elapsed = base::TimeTicks::Now() - constructed_; \
26 UMA_HISTOGRAM_TIMES(name, elapsed); \
  /external/chromium_org/v8/src/base/platform/
elapsed-timer.h 21 // |Elapsed()| or |HasExpired()|, and may be restarted using |Restart()|.
50 // 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
67 TimeDelta Elapsed() const {
69 TimeDelta elapsed = Now() - start_ticks_ local
    [all...]
  /art/test/053-wait-some/src/
Main.java 56 long elapsed = end - start; local
68 if (elapsed < min) {
69 System.out.println(" Elapsed time was too short");
71 } else if (elapsed > max) {
72 System.out.println(" Elapsed time was too long: "
73 + "elapsed=" + elapsed + " max=" + max);
79 System.out.println(" Wall clock elapsed "
80 + elapsed + "ms");
  /external/bison/lib/
timevar.c 143 /* Elapsed time for this variable. */
144 struct timevar_time_def elapsed; member in struct:timevar_def
162 /* An element on the timing stack. Elapsed time is attributed to the
186 pushed. Time elapsed since then is attributed to the topmost
259 /* Zero all elapsed times. */
276 /* Push TIMEVAR onto the timing stack. No further elapsed time is
278 subsequent elapsed time is attributed to TIMEVAR, until it is
304 /* If the stack isn't empty, attribute the current elapsed time to
307 timevar_accumulate (&stack->timevar->elapsed, &start_time, &now);
331 popped variable must be TIMEVAR. Elapsed time since the tha
    [all...]
  /external/chromium_org/third_party/ots/test/
perf.cc 61 struct timeval start, end, elapsed; local
72 timersub(&end, &start, &elapsed);
75 = ((elapsed.tv_sec * 1000 * 1000) + elapsed.tv_usec) / num_repeat;
  /art/test/004-InterfaceTest/src/
Main.java 46 long elapsed = test_virtual(hashmap); local
50 elapsed = test_interface(hashmap);
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_service.cc 75 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/fio/
time.c 101 unsigned long elapsed; local
108 elapsed = utime_since_now(&tv);
110 if (elapsed > ns_granularity)
111 ns_granularity = elapsed;
  /art/test/067-preemptive-unpark/src/
Main.java 97 long elapsed = System.currentTimeMillis() - start; local
99 if (elapsed > 200) {
100 System.out.println("park()ed for " + elapsed + " msec");
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SMILTimeContainer.h 56 SMILTime elapsed() const;
91 void updateAnimationsAndScheduleFrameIfNeeded(SMILTime elapsed, bool seekToTime = false);
92 SMILTime updateAnimations(SMILTime elapsed, bool seekToTime = false);
SVGSMILElement.cpp 583 beginListChanged(elapsed());
585 endListChanged(elapsed());
716 SMILTime SVGSMILElement::elapsed() const function in class:blink::SVGSMILElement
718 return m_timeContainer ? m_timeContainer->elapsed() : 0;
1003 SMILTime elapsed = this->elapsed(); local
1280 SMILTime elapsed = this->elapsed(); local
1319 SMILTime elapsed = this->elapsed(); local
    [all...]
  /external/eigen/bench/btl/generic_bench/timers/
portable_timer.hh 68 double elapsed() { function in class:Portable_Timer
74 double user_time() { return elapsed(); }
125 double elapsed() function in class:Portable_Timer
  /external/chromium_org/third_party/webrtc/base/
profiler.cc 61 double elapsed = static_cast<double>(stop_time - current_start_time_) / local
63 total_time_ += elapsed;
65 minimum_ = maximum_ = elapsed;
67 minimum_ = _min(minimum_, elapsed);
68 maximum_ = _max(maximum_, elapsed);
73 double delta = elapsed - mean_;
75 sum_of_squared_differences_ += delta * (elapsed - mean_);
  /external/lldb/test/
lldbbench.py 7 times. Each start/stop is equal to a lap, with its elapsed time accumulated
68 elapsed = self.__stop__ - self.__start__
69 self.__total_elapsed__ += elapsed
71 self.__nums__.append(elapsed)
81 """Equal to total elapsed time divided by the number of laps."""
91 return "Avg: %f (Laps: %d, Total Elapsed Time: %f, min=%f, max=%f)" % (self.avg(),
  /external/chromium_org/chrome/browser/chromeos/geolocation/
simple_geolocation_provider.h 52 const base::TimeDelta elapsed);
simple_geolocation_provider.cc 62 const base::TimeDelta elapsed) {
65 callback.Run(geoposition, server_error, elapsed);
simple_geolocation_request.h 43 const base::TimeDelta elapsed)> ResponseCallback;
79 void ReplyAndDestroySelf(const base::TimeDelta elapsed, bool server_error);
  /external/chromium_org/components/domain_reliability/
beacon.h 45 // Elapsed time between starting and completing the request.
46 base::TimeDelta elapsed; member in struct:domain_reliability::DomainReliabilityBeacon
  /external/blktrace/
blkparse_fmt.c 163 struct blk_io_trace *t, unsigned long long elapsed,
238 if (elapsed == -1ULL) {
239 fprintf(stderr, "Expecting elapsed value\n");
242 fprintf(ofp, strcat(format, "llu"), elapsed / 1000);
257 struct blk_io_trace *t, unsigned long long elapsed,
277 print_field(act, pci, t, elapsed, pdu_len, pdu_buf, *p++,
284 struct blk_io_trace *t, unsigned long long elapsed,
321 if (elapsed != -1ULL) {
325 t_sec(t), elapsed, t->error);
329 elapsed, t->error)
    [all...]

Completed in 1893 milliseconds

1 2 3 4 5 6 7