HomeSort by relevance Sort by last modified time
    Searched refs:elapsed (Results 51 - 75 of 214) sorted by null

1 23 4 5 6 7 8 9

  /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...]
  /external/chromium_org/third_party/icu/source/test/perf/ucnvavailperf/
ucnvavailperf.cpp 117 double elapsed = utimer_getElapsedSeconds(&start_time); local
119 printf("ucnv_countAvailable() took %g seconds to figure this out.\n", elapsed);
  /external/icu4c/test/perf/ucnvavailperf/
ucnvavailperf.cpp 117 double elapsed = utimer_getElapsedSeconds(&start_time); local
119 printf("ucnv_countAvailable() took %g seconds to figure this out.\n", elapsed);
  /external/linux-tools-perf/scripts/python/
futex-contention.py 21 lock_waits = {} # long-lived stats on (tid,lock) blockage elapsed time
37 elapsed = nsecs(s, ns) - thread_blocktime[tid]
38 add_stats(lock_waits, (tid, thread_thislock[tid]), elapsed)
  /external/skia/bench/
BenchSysTimer_mach.cpp 67 uint64_t elapsed = end_wall - this->fStartWall; local
72 uint64_t elapsedNano = elapsed * sTimebaseInfo.numer
  /frameworks/base/tools/preload/loadclass/
LoadClass.java 40 long elapsed = System.currentTimeMillis() - start; local
41 Log.i("LoadClass", "Loaded " + args[0] + " in " + elapsed
  /external/dropbear/
progressmeter.c 114 double elapsed; local
128 elapsed = now - last_update;
130 elapsed = now - start;
137 if (elapsed != 0)
138 cur_speed = (transferred / elapsed);
183 stalled += elapsed;
195 seconds = elapsed;
  /external/openssh/
progressmeter.c 124 double elapsed; local
138 elapsed = now - last_update;
140 elapsed = now - start;
147 if (elapsed != 0)
148 cur_speed = (transferred / elapsed);
193 stalled += elapsed;
205 seconds = elapsed;
  /packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/
SourceLatency.java 144 long elapsed = end - start; local
146 Log.d(TAG, src + ": null cursor in " + formatTime(elapsed)
149 Log.d(TAG, src + ": " + cursor.getCount() + " rows in " + formatTime(elapsed)
152 return elapsed;
239 long elapsed = (end - start); local
241 Log.d(TAG, mSrc + ": null cursor in " + formatTime(elapsed)
244 Log.d(TAG, mSrc + ": " + cursor.getCount() + " rows in " + formatTime(elapsed)
294 long elapsed = end - mStart; local
297 + " rows in " + formatTime(elapsed));
  /external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.h 67 RtpDumpPacket(const void* d, size_t s, uint32 elapsed, bool rtcp)
68 : elapsed_time(elapsed),
117 // the stream when it ends. RtpDumpLoopReader maintains the elapsed time, the
135 // During the second and later loops, update the elapsed time of the dump
141 // How much to increase the elapsed time, RTP sequence number, RTP timestampe
152 // The elapsed time, RTP sequence number, and RTP timestamp of the first and
193 uint32 elapsed, bool rtcp);
  /external/chromium_org/cc/resources/
tile_manager_perftest.cc 70 base::TimeDelta elapsed = base::TimeTicks::HighResNow() - start_time_; local
71 if (elapsed >= base::TimeDelta::FromMilliseconds(kTimeLimitMillis)) {
72 elapsed_ = elapsed;
  /external/chromium/chrome/browser/visitedlink/
visitedlink_perftest.cc 159 TimeDelta elapsed = cold_timer.Elapsed(); local
162 cold_load_times.push_back(elapsed.InMillisecondsF());
175 TimeDelta elapsed = hot_timer.Elapsed(); local
178 hot_load_times.push_back(elapsed.InMillisecondsF());
  /external/chromium/third_party/libjingle/source/talk/base/
time.h 47 // Returns a future timestamp, 'elapsed' milliseconds from now.
48 uint32 TimeAfter(int32 elapsed);
69 // The number of milliseconds that have elapsed since 'earlier'.
  /external/chromium_org/components/visitedlink/test/
visitedlink_perftest.cc 158 TimeDelta elapsed = cold_timer.Elapsed(); local
161 cold_load_times.push_back(elapsed.InMillisecondsF());
175 TimeDelta elapsed = hot_timer.Elapsed(); local
178 hot_load_times.push_back(elapsed.InMillisecondsF());
  /external/chromium_org/third_party/libjingle/source/talk/base/
timeutils.cc 146 uint32 TimeAfter(int32 elapsed) {
147 ASSERT(elapsed >= 0);
148 ASSERT(static_cast<uint32>(elapsed) < HALF);
149 return Time() + elapsed;
  /external/llvm/include/llvm/Support/
Process.h 152 /// \param elapsed Returns the TimeValue::now() giving current time
155 static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
  /frameworks/av/include/cpustats/
ThreadCpuUsage.h 104 // Return the elapsed delta wall clock ns since initial enable or reset,
106 long long elapsed() const;
108 // Reset elapsed wall clock. Has no effect on tracking or accumulator.
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/output/
xml_log_formatter.hpp 47 void test_unit_finish( std::ostream&, test_unit const& tu, unsigned long elapsed );
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
telnetlib.py 319 elapsed = time() - time_start
320 call_timeout = timeout-elapsed
330 elapsed = time() - time_start
331 if elapsed >= timeout:
333 call_timeout = timeout-elapsed
372 elapsed = time() - time_start
373 if elapsed >= timeout:
375 s_args = s_reply + (timeout-elapsed,)
689 elapsed = time() - time_start
690 call_timeout = timeout-elapsed
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
telnetlib.py 319 elapsed = time() - time_start
320 call_timeout = timeout-elapsed
330 elapsed = time() - time_start
331 if elapsed >= timeout:
333 call_timeout = timeout-elapsed
372 elapsed = time() - time_start
373 if elapsed >= timeout:
375 s_args = s_reply + (timeout-elapsed,)
689 elapsed = time() - time_start
690 call_timeout = timeout-elapsed
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
test_projects.py 138 elapsed = (time.time() - start_time) * 1000
139 return result, elapsed
145 result, elapsed = RunTestOnce(desc, toolchain, config)
146 total_elapsed += elapsed
156 result, elapsed = RunTestNTimes(desc, toolchain, config,
158 WriteGtestFooter(result, test_name, elapsed)
168 def WriteGtestFooter(success, test_name, elapsed):
175 print '%s %s (%d ms)' % (message, test_name, elapsed)
  /external/chromium_org/content/public/android/java/src/org/chromium/content/common/
TraceEvent.java 117 final long elapsed = SystemClock.elapsedRealtime() local
119 if (elapsed > MIN_INTERESTING_DURATION_MILLIS) {
121 + elapsed + "ms: " + line);
138 final long elapsed = now - mLastIdleStartedAt; local
141 if (elapsed > MIN_INTERESTING_BURST_DURATION_MILLIS) {
146 + elapsed + "ms elapsed since last idle";
  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 141 int elapsed = time.elapsed(); local
145 float speed = elapsed ? float(total_iter)*1000/elapsed : 0;
148 << elapsed << " ms, "
  /external/netperf/
netcpu_kstat.c 257 elapsed, local
302 elapsed = (float)sec + ((float)usec/(float)1000000.0);
307 fprintf(where,"\telapsed time = %g\n",elapsed);
327 (float)(secondcnt[j] - firstcnt[j])/elapsed :
328 (float)(secondcnt[j]-firstcnt[j]+MAXLONG)/elapsed;
356 /* tests tell up what the elapsed time should be. */
netcpu_perfstat.c 123 elapsed, local
203 elapsed = (float)sec + ((float)usec/(float)1000000.0);
227 fprintf(where,"\telapsed time = %g\n",elapsed);
248 (float)(secondcnt[j] - firstcnt[j])/elapsed :
249 (float)(secondcnt[j]-firstcnt[j]+MAXLONG)/elapsed;
279 /* tests tell up what the elapsed time should be. */

Completed in 1230 milliseconds

1 23 4 5 6 7 8 9