Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:current_ms
(Results
1 - 4
of
4
) sorted by relevance
/third_party/mbedtls/library/
H
A
D
platform_util.c
233
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
D
counters.h
394
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
D
gc-tracer.h
284
void SampleAllocation(double
current_ms
, size_t new_space_counter_bytes,
289
void AddAllocation(double
current_ms
);
H
A
D
gc-tracer.cc
584
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