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:GetRecordData
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
gc_stats.cpp
172
size_t commitSize =
GetRecordData
(RecordData::EDEN_COMMIT_SIZE);
in PrintGCMemoryStatistic()
173
double copiedRate = commitSize == 0 ? 0 : (double(
GetRecordData
(RecordData::EDEN_ALIVE_SIZE)) / commitSize);
in PrintGCMemoryStatistic()
175
commitSize == 0 ? 0 : (double(
GetRecordData
(RecordData::EDEN_PROMOTE_SIZE)) / commitSize);
in PrintGCMemoryStatistic()
183
double copiedRate = double(
GetRecordData
(RecordData::YOUNG_ALIVE_SIZE)) /
in PrintGCMemoryStatistic()
184
GetRecordData
(RecordData::YOUNG_COMMIT_SIZE);
in PrintGCMemoryStatistic()
185
double premotedRate = double(
GetRecordData
(RecordData::YOUNG_PROMOTE_SIZE)) /
in PrintGCMemoryStatistic()
186
GetRecordData
(RecordData::YOUNG_COMMIT_SIZE);
in PrintGCMemoryStatistic()
195
<< STATS_DATA_FORMAT(double(
GetRecordData
(RecordData::OLD_ALIVE_SIZE)) /
in PrintGCMemoryStatistic()
196
GetRecordData
(RecordData::OLD_COMMIT_SIZE));
in PrintGCMemoryStatistic()
201
<< STATS_DATA_FORMAT(double(
GetRecordData
(RecordDat
in PrintGCMemoryStatistic()
[all...]
H
A
D
gc_stats.h
94
size_t
GetRecordData
(RecordData dataIdx)
in GetRecordData()
function in panda::ecmascript::GCStats
135
size_t commitSize =
GetRecordData
(RecordData::EDEN_TOTAL_COMMIT);
in GetAvgSurvivalRate()
139
double copiedRate = double(
GetRecordData
(RecordData::EDEN_TOTAL_ALIVE)) / commitSize;
in GetAvgSurvivalRate()
140
double promotedRate = double(
GetRecordData
(RecordData::EDEN_TOTAL_PROMOTE)) / commitSize;
in GetAvgSurvivalRate()
143
double copiedRate = double(
GetRecordData
(RecordData::YOUNG_TOTAL_ALIVE)) /
in GetAvgSurvivalRate()
144
GetRecordData
(RecordData::YOUNG_TOTAL_COMMIT);
in GetAvgSurvivalRate()
145
double promotedRate = double(
GetRecordData
(RecordData::YOUNG_TOTAL_PROMOTE)) /
in GetAvgSurvivalRate()
146
GetRecordData
(RecordData::YOUNG_TOTAL_COMMIT);
in GetAvgSurvivalRate()
192
return
GetRecordData
(RecordData::SEMI_COUNT) +
GetRecordData
(RecordDat
in GetGCCount()
[all...]
H
A
D
gc_key_stats.cpp
56
SizeToIntKB(gcStats_->
GetRecordData
(RecordData::END_OBJ_SIZE)));
in AddGCStatsToKey()
58
SizeToIntKB(gcStats_->
GetRecordData
(RecordData::END_COMMIT_SIZE)));
in AddGCStatsToKey()
60
SizeToIntKB(gcStats_->
GetRecordData
(RecordData::YOUNG_ALIVE_SIZE)));
in AddGCStatsToKey()
62
SizeToIntKB(gcStats_->
GetRecordData
(RecordData::YOUNG_COMMIT_SIZE)));
in AddGCStatsToKey()
64
SizeToIntKB(gcStats_->
GetRecordData
(RecordData::OLD_ALIVE_SIZE)));
in AddGCStatsToKey()
66
SizeToIntKB(gcStats_->
GetRecordData
(RecordData::OLD_COMMIT_SIZE)));
in AddGCStatsToKey()
H
A
D
heap.cpp
1824
size_t collectRegionSetSize = GetEcmaGCStats()->
GetRecordData
(
in CalculateIdleDuration()
Completed in 6 milliseconds