Home
last modified time | relevance | path

Searched refs:sample_time (Results 1 – 4 of 4) sorted by relevance

/external/v8/tools/
Dprocess-heap-prof.py52 sample_time = 0.0
66 sample_time = float(row[3])/1000.0
68 first_call_time = sample_time
69 sample_time -= first_call_time
70 print('BEGIN_SAMPLE %.2f' % sample_time)
73 print('END_SAMPLE %.2f' % sample_time)
Dll_prof.py900 sample_time = 0 variable
960 sample_time += time.time() - start
986 print "%9.2fs tick processing time" % sample_time
/external/webrtc/webrtc/base/
Dbandwidthsmoother.cc36 bool BandwidthSmoother::Sample(uint32_t sample_time, int bandwidth) { in Sample() argument
53 time_at_last_change_ = sample_time; in Sample()
67 time_at_last_change_ = sample_time; in Sample()
71 } else if (sample_time >= time_at_last_change_ + time_between_increase_) { in Sample()
72 time_at_last_change_ = sample_time; in Sample()
Dbandwidthsmoother.h43 bool Sample(uint32_t sample_time, int bandwidth);