Home
last modified time | relevance | path

Searched refs:start_ms (Results 1 – 12 of 12) sorted by relevance

/external/webrtc/webrtc/system_wrappers/source/
Dtimestamp_extrapolator.cc17 TimestampExtrapolator::TimestampExtrapolator(int64_t start_ms) in TimestampExtrapolator() argument
34 Reset(start_ms); in TimestampExtrapolator()
42 void TimestampExtrapolator::Reset(int64_t start_ms) in Reset() argument
45 _startMs = start_ms; in Reset()
Dcondition_variable_unittest.cc194 int64_t start_ms = TickTime::MillisecondTimestamp(); in TEST() local
197 EXPECT_LE(start_ms + kVeryShortWaitMs, end_ms) in TEST()
198 << "actual elapsed:" << end_ms - start_ms; in TEST()
/external/webrtc/webrtc/system_wrappers/include/
Dtimestamp_extrapolator.h23 explicit TimestampExtrapolator(int64_t start_ms);
27 void Reset(int64_t start_ms);
/external/v8/src/heap/
Dscavenge-job.cc24 double start_ms = heap->MonotonicallyIncreasingTimeInMs(); in RunInternal() local
25 double idle_time_in_ms = deadline_in_ms - start_ms; in RunInternal()
Dincremental-marking-job.cc95 double start_ms = heap->MonotonicallyIncreasingTimeInMs(); in RunInternal() local
103 double idle_time_in_ms = deadline_in_ms - start_ms; in RunInternal()
Dheap.cc4205 double start_ms, double deadline_in_ms) { in IdleNotificationEpilogue() argument
4206 double idle_time_in_ms = deadline_in_ms - start_ms; in IdleNotificationEpilogue()
4216 if (deadline_in_ms - start_ms > in IdleNotificationEpilogue()
4221 start_ms, committed_memory); in IdleNotificationEpilogue()
4223 start_ms, used_memory); in IdleNotificationEpilogue()
4277 double start_ms = MonotonicallyIncreasingTimeInMs(); in IdleNotification() local
4278 double idle_time_in_ms = deadline_in_ms - start_ms; in IdleNotification()
4280 tracer()->SampleAllocation(start_ms, NewSpaceAllocationCounter(), in IdleNotification()
4290 IdleNotificationEpilogue(action, heap_state, start_ms, deadline_in_ms); in IdleNotification()
Dheap.h1825 GCIdleTimeHeapState heap_state, double start_ms,
/external/webrtc/talk/media/base/
Drtpdump.cc48 RtpDumpFileHeader::RtpDumpFileHeader(uint32_t start_ms, uint32_t s, uint16_t p) in RtpDumpFileHeader() argument
49 : start_sec(start_ms / 1000), in RtpDumpFileHeader()
50 start_usec(start_ms % 1000 * 1000), in RtpDumpFileHeader()
Drtpdump.h59 RtpDumpFileHeader(uint32_t start_ms, uint32_t s, uint16_t p);
/external/webrtc/webrtc/test/
Drtp_file_reader.cc513 uint32_t CalcTimeDelta(uint32_t ts_sec, uint32_t ts_usec, uint32_t start_ms) { in CalcTimeDelta() argument
517 uint64_t t1_ms = static_cast<uint64_t>(start_ms); in CalcTimeDelta()
/external/webrtc/webrtc/base/
Dsocket_unittest.cc933 uint32_t start_ms = Time(); in UdpReadyToSend() local
936 while (start_ms + kTimeout > Time()) { in UdpReadyToSend()
/external/skia/dm/
DDM.cpp117 static SkMSec start_ms = SkTime::GetMSecs(); in print_status() local
121 SkString elapsed = HumanizeMs(SkTime::GetMSecs() - start_ms); in print_status()