/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. */
|
netcpu_pstat.c | 106 elapsed, local 169 elapsed = (float)sec + ((float)usec/(float)1000000.0); 174 fprintf(where,"\telapsed time = %g\n",elapsed); 199 (float)(secondcnt[j] - firstcnt[j] )/elapsed : 200 (float)(secondcnt[j] - firstcnt[j] + LONG_LONG_MAX)/elapsed; 236 /* tests tell up what the elapsed time should be. */
|
netcpu_looper.c | 493 elapsed, 531 elapsed = (float)sec + ((float)usec/(float)1000000.0); 536 fprintf(where,"\telapsed time = %g\n",elapsed); 556 (float)(secondcnt[j] - firstcnt[j])/elapsed : 557 (float)(secondcnt[j]-firstcnt[j]+MAXLONG)/elapsed; 597 /* tests tell up what the elapsed time should be. */ 492 elapsed, local
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
SystemGesturesPointerEventListener.java | 170 final long elapsed = time - mDownTime[i]; 172 + " moved (" + fromX + "->" + x + "," + fromY + "->" + y + ") in " + elapsed); 175 && elapsed < SWIPE_TIMEOUT_MS) { 180 && elapsed < SWIPE_TIMEOUT_MS) { 185 && elapsed < SWIPE_TIMEOUT_MS) {
|
/cts/tests/tests/view/src/android/view/cts/ |
DisplayRefreshRateTest.java | 125 float elapsed = t - mStartTime; local 126 if (elapsed >= TEST_SECONDS) { 127 mResult.notifyResult((float)mNumFrames / elapsed);
|
/external/chromium_org/chrome/browser/sync_file_system/ |
sync_process_runner.cc | 116 "[%s] * Finished (elapsed: %" PRId64 " sec)", 150 base::TimeDelta elapsed = base::Time::Now() - last_scheduled_; 151 if (elapsed < time_to_next) { 152 time_to_next = time_to_next - elapsed;
|
/external/chromium_org/media/audio/mac/ |
audio_input_mac.cc | 216 base::TimeDelta elapsed = base::TimeTicks::Now() - last_fill_; local 218 if (elapsed < kMinDelay) 219 base::PlatformThread::Sleep(kMinDelay - elapsed);
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
rtpdump.h | 74 RtpDumpPacket(const void* d, size_t s, uint32 elapsed, bool rtcp) 75 : elapsed_time(elapsed), 140 // the stream when it ends. RtpDumpLoopReader maintains the elapsed time, the 158 // During the second and later loops, update the elapsed time of the dump 164 // How much to increase the elapsed time, RTP sequence number, RTP timestampe 175 // The elapsed time, RTP sequence number, and RTP timestamp of the first and 218 uint32 elapsed, bool rtcp);
|
/external/lldb/tools/debugserver/source/ |
DNBTimer.h | 93 // 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/third_party/libjingle/source/talk/base/ |
timeutils.h | 63 // Returns a future timestamp, 'elapsed' milliseconds from now. 64 uint32 TimeAfter(int32 elapsed); 85 // The number of milliseconds that have elapsed since 'earlier'.
|
cpumonitor.cc | 184 int elapsed = static_cast<int>(TimeDiff(timenow, system_.prev_load_time_)); local 186 elapsed < min_load_interval_) { 305 int elapsed = static_cast<int>(TimeDiff(timenow, process_.prev_load_time_)); local 307 elapsed < min_load_interval_) {
|
/external/chromium_org/third_party/webrtc/base/ |
timeutils.h | 46 // Returns a future timestamp, 'elapsed' milliseconds from now. 47 uint32 TimeAfter(int32 elapsed); 68 // The number of milliseconds that have elapsed since 'earlier'.
|
/external/llvm/include/llvm/Support/ |
Process.h | 158 /// \param elapsed Returns the TimeValue::now() giving current time 161 static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/output/ |
compiler_log_formatter.hpp | 44 void test_unit_finish( std::ostream&, test_unit const& tu, unsigned long elapsed );
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
results_collector.hpp | 87 void test_unit_finish( test_unit const&, unsigned long elapsed );
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGAnimationElement.cpp | 244 return narrowPrecisionToFloat(elapsed().value()); 261 SMILTime elapsed = this->elapsed(); 262 addBeginTime(elapsed, elapsed + offset, SMILTimeWithOrigin::ScriptOrigin); 274 SMILTime elapsed = this->elapsed(); 275 addEndTime(elapsed, elapsed + offset, SMILTimeWithOrigin::ScriptOrigin);
|
/frameworks/base/sax/tests/saxtests/src/android/sax/ |
SafeSaxTest.java | 176 long elapsed = System.currentTimeMillis() - start; local 177 Log.i(TAG, "pure SAX: " + elapsed + "ms"); 184 long elapsed = System.currentTimeMillis() - start; local 185 Log.i(TAG, "Saxy Model: " + elapsed + "ms"); 192 long elapsed = System.currentTimeMillis() - start; local 193 Log.i(TAG, "Saxy Model (preloaded): " + elapsed + "ms");
|
/external/chromium_org/chrome/browser/net/ |
dns_probe_service.cc | 79 void HistogramProbe(DnsProbeStatus status, base::TimeDelta elapsed) { 84 UMA_HISTOGRAM_MEDIUM_TIMES("DnsProbe.ProbeDuration", elapsed);
|
/external/chromium_org/components/domain_reliability/ |
context_unittest.cc | 32 beacon.elapsed = base::TimeDelta::FromMilliseconds(250); 33 beacon.start_time = time->NowTicks() - beacon.elapsed;
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
tracing_backend.py | 172 def _ErrorHandler(self, elapsed): 174 elapsed)
|
/frameworks/base/core/java/com/android/internal/os/ |
SamplingProfilerIntegration.java | 196 long elapsed = System.currentTimeMillis() - start; local 197 Log.i(TAG, "Wrote snapshot " + path + " in " + elapsed + "ms.");
|
/frameworks/base/services/core/java/com/android/server/trust/ |
TrustArchive.java | 151 private static String formatElapsed(long elapsed) { 152 long delta = elapsed - SystemClock.elapsedRealtime();
|
/libcore/luni/src/test/java/libcore/java/lang/ |
ThreadTest.java | 67 long elapsed = System.currentTimeMillis() - start; local 68 long offBy = Math.abs(elapsed - millis);
|
/external/chromium_org/chrome/browser/policy/cloud/ |
cloud_policy_invalidator.cc | 322 // the client yet, so set it now that the required time has elapsed. 357 base::TimeDelta elapsed = clock_->Now() - last_fetch_time; local 358 return elapsed.InSeconds() < kUnknownVersionIgnorePeriod; 401 base::TimeDelta elapsed = clock_->Now() - invalidations_enabled_time_; 402 return elapsed.InSeconds() >= kInvalidationGracePeriod;
|