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:RecordData
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
gc_stats.cpp
47
<< sizeToMB(recordData_[(uint8_t)
RecordData
::START_OBJ_SIZE]) << " ("
in PrintGCStatistic()
48
<< sizeToMB(recordData_[(uint8_t)
RecordData
::START_COMMIT_SIZE]) << ") -> "
in PrintGCStatistic()
49
<< sizeToMB(recordData_[(uint8_t)
RecordData
::END_OBJ_SIZE]) << " ("
in PrintGCStatistic()
50
<< sizeToMB(recordData_[(uint8_t)
RecordData
::END_COMMIT_SIZE]) << ") MB, "
in PrintGCStatistic()
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
in PrintGCMemoryStatistic()
[all...]
H
A
D
gc_stats.h
43
enum class
RecordData
: uint8_t {
class
89
void SetRecordData(
RecordData
dataIdx, size_t value)
in SetRecordData()
94
size_t GetRecordData(
RecordData
dataIdx)
in GetRecordData()
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
in GetAvgSurvivalRate()
[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
sparse_space.cpp
493
RecordData
::COLLECT_REGION_SET_SIZE, collectRegionSet_.size() * Region::AVERAGE_REGION_EVACUATE_SIZE);
in SelectCSet()
H
A
D
heap.cpp
1825
RecordData
::COLLECT_REGION_SET_SIZE);
in CalculateIdleDuration()
Completed in 8 milliseconds