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:GetNewSpace
(Results
1 - 15
of
15
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/
H
A
D
gc_third_test.cpp
99
size_t originalYoungSize = heap->
GetNewSpace
()->GetCommittedSize();
101
EXPECT_FALSE(heap->
GetNewSpace
()->CommittedSizeIsLarge());
111
size_t newYoungSize = heap->
GetNewSpace
()->GetCommittedSize();
112
size_t originalOverShootSize = heap->
GetNewSpace
()->GetOvershootSize();
113
EXPECT_TRUE(heap->
GetNewSpace
()->CommittedSizeIsLarge());
118
newYoungSize = heap->
GetNewSpace
()->GetCommittedSize();
119
size_t newOverShootSize = heap->
GetNewSpace
()->GetOvershootSize();
132
size_t newSize = heap->
GetNewSpace
()->GetCommittedSize();
H
A
D
concurrent_marking_test.cpp
118
heap->
GetNewSpace
()->SetInitialCapacity(static_cast<size_t>(length));
in HWTEST_F_L0()
135
SemiSpace *space = heap->
GetNewSpace
();
in HWTEST_F_L0()
H
A
D
mem_controller_test.cpp
92
auto newSpace = heap->
GetNewSpace
();
96
newSpace = heap->
GetNewSpace
();
H
A
D
js_verification_test.cpp
82
const_cast<SemiSpace *>(heap->
GetNewSpace
())->IterateOverObjects(objVerifier); // newspace reference the old space
in HWTEST_F_L0()
H
A
D
gc_second_test.cpp
222
size_t newSpaceCapacity = heap->
GetNewSpace
()->GetInitialCapacity();
in HWTEST_F_L0()
282
SemiSpace * space = heap->
GetNewSpace
();
in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
mem_controller.cpp
88
auto newSpace = heap_->
GetNewSpace
();
in StartCalculationBeforeGC()
117
heap_->
GetNewSpace
()->GetHeapObjectSize() - newSpaceRecordLastTimeSizeIdle_,
in StartCalculationBeforeGC()
128
size_t currentNewSpaceObjectSize = heap_->
GetNewSpace
()->GetHeapObjectSize();
in RecordAllocationForIdle()
204
newSpaceRecordLastTimeSizeIdle_ = heap_->
GetNewSpace
()->GetHeapObjectSize();
in StopCalculationAfterGC()
H
A
D
concurrent_marker.cpp
131
heap_->
GetNewSpace
()->RecordCurrentRegionAsHalfFresh();
in InitializeMarking()
149
heapObjectSize_ = heap_->
GetNewSpace
()->GetHeapObjectSize();
in InitializeMarking()
185
heapObjectSize_ = heap_->
GetNewSpace
()->GetHeapObjectSize();
in FinishMarking()
H
A
D
partial_gc.cpp
37
+ ";Young" + std::to_string(heap_->
GetNewSpace
()->GetCommittedSize())
in RunPhases()
44
heap_->
GetNewSpace
()->GetCommittedSize() >= heap_->
GetNewSpace
()->GetMaximumCapacity();
in RunPhases()
H
A
D
full_gc.cpp
35
+ ";Young" + std::to_string(heap_->
GetNewSpace
()->GetCommittedSize())
in RunPhases()
88
youngSpaceCommitSize_ = heap_->
GetNewSpace
()->GetCommittedSize();
in Initialize()
H
A
D
parallel_evacuator.cpp
25
waterLine_ = heap_->
GetNewSpace
()->GetWaterLine();
in Initialize()
241
heap_->
GetNewSpace
()->EnumerateRegions([&]([[maybe_unused]] Region *current) {
in UpdateReference()
246
heap_->
GetNewSpace
()->EnumerateRegions([&](Region *current) {
in UpdateReference()
503
Region *current = heap_->
GetNewSpace
()->GetCurrentRegion();
in UpdateNewRegionReference()
507
auto top = heap_->
GetNewSpace
()->GetTop();
in UpdateNewRegionReference()
H
A
D
gc_stats.cpp
125
<< STATS_DATA_FORMAT(sizeToKB(heap_->
GetNewSpace
()->GetHeapObjectSize())) << "KB"
in PrintGCMemoryStatistic()
127
<< STATS_DATA_FORMAT(sizeToKB(heap_->
GetNewSpace
()->GetCommittedSize())) << "KB\n"
in PrintGCMemoryStatistic()
398
SetRecordData(RecordData::START_YOUNG_OBJ_SIZE, heap_->
GetNewSpace
()->GetHeapObjectSize());
in RecordStatisticBeforeGC()
412
heap_->
GetNewSpace
()->GetCommittedSize() + heap_->GetEdenSpace()->GetCommittedSize();
in RecordStatisticBeforeGC()
473
size_t youngAliveSize = heap_->
GetNewSpace
()->GetHeapObjectSize();
in RecordStatisticAfterGC()
H
A
D
parallel_marker.cpp
135
SemiSpace *newSpace = heap_->
GetNewSpace
();
in ProcessMarkStack()
204
waterLine_ = heap_->
GetNewSpace
()->GetWaterLine();
in Initialize()
H
A
D
idle_gc_trigger.cpp
158
auto newSpace = heap_->
GetNewSpace
();
in CheckIdleYoungGC()
H
A
D
heap.cpp
2260
static_cast<int64_t>(
GetNewSpace
()->GetInitialCapacity() -
GetNewSpace
()->GetCommittedSize());
in NotifyFinishColdStart()
2264
GetNewSpace
()->SetOverShootSize(std::max(overshootSize, (int64_t)0));
in NotifyFinishColdStart()
2300
static_cast<int64_t>(
GetNewSpace
()->GetInitialCapacity() -
GetNewSpace
()->GetCommittedSize());
in HandleExitHighSensitiveEvent()
2304
GetNewSpace
()->SetOverShootSize(std::max(overshootSize, (int64_t)0));
in HandleExitHighSensitiveEvent()
H
A
D
heap.h
923
SemiSpace *
GetNewSpace
() const
in GetNewSpace()
function in panda::panda::ecmascript::Heap
Completed in 15 milliseconds