Home
last modified time | relevance | path

Searched refs:current_ms (Results 1 - 4 of 4) sorted by relevance

/third_party/mbedtls/library/
H A Dplatform_util.c233 mbedtls_ms_time_t current_ms; in mbedtls_ms_time() local
244 current_ms = tv.tv_sec; in mbedtls_ms_time()
246 return current_ms*1000 + tv.tv_nsec / 1000000; in mbedtls_ms_time()
254 mbedtls_ms_time_t current_ms; in mbedtls_ms_time() local
257 current_ms = ((mbedtls_ms_time_t) ct.dwLowDateTime + in mbedtls_ms_time()
259 return current_ms; in mbedtls_ms_time()
/third_party/node/deps/v8/src/logging/
H A Dcounters.h394 void AddSample(double current_ms, double current_value);
406 double Aggregate(double current_ms, double current_value);
417 void AggregatedMemoryHistogram<Histogram>::AddSample(double current_ms, in AddSample() argument
421 start_ms_ = current_ms; in AddSample()
423 last_ms_ = current_ms; in AddSample()
428 if (current_ms < last_ms_ + kEpsilon) { in AddSample()
434 if (end_ms <= current_ms + kEpsilon) { in AddSample()
435 // Linearly interpolate between the last_ms_ and the current_ms. in AddSample()
436 double slope = (current_value - last_value_) / (current_ms - last_ms_); in AddSample()
439 // to the current_ms in AddSample()
474 Aggregate(double current_ms, double current_value) Aggregate() argument
[all...]
/third_party/node/deps/v8/src/heap/
H A Dgc-tracer.h284 void SampleAllocation(double current_ms, size_t new_space_counter_bytes,
289 void AddAllocation(double current_ms);
H A Dgc-tracer.cc584 void GCTracer::SampleAllocation(double current_ms, in SampleAllocation() argument
590 allocation_time_ms_ = current_ms; in SampleAllocation()
604 double duration = current_ms - allocation_time_ms_; in SampleAllocation()
605 allocation_time_ms_ = current_ms; in SampleAllocation()
616 void GCTracer::AddAllocation(double current_ms) { in AddAllocation() argument
617 allocation_time_ms_ = current_ms; in AddAllocation()

Completed in 6 milliseconds