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:oldSpaceSize
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/serializer/
H
A
D
base_deserializer.cpp
559
size_t
oldSpaceSize
= data_->GetOldSpaceSize();
in AllocateToDifferentSpaces()
local
560
if (
oldSpaceSize
> 0) {
in AllocateToDifferentSpaces()
561
heap_->GetOldSpace()->IncreaseLiveObjectSize(
oldSpaceSize
);
in AllocateToDifferentSpaces()
562
AllocateToOldSpace(
oldSpaceSize
);
in AllocateToDifferentSpaces()
633
void BaseDeserializer::AllocateToOldSpace(size_t
oldSpaceSize
)
in AllocateToOldSpace()
argument
636
uintptr_t object = space->Allocate(
oldSpaceSize
, false);
in AllocateToOldSpace()
639
DeserializeFatalOutOfMemory(
oldSpaceSize
);
in AllocateToOldSpace()
643
AllocateMultiRegion(space,
oldSpaceSize
, oldRegionIndex_);
in AllocateToOldSpace()
645
FreeObject::FillFreeObject(heap_, object,
oldSpaceSize
);
in AllocateToOldSpace()
H
A
D
base_deserializer.h
112
void AllocateToOldSpace(size_t
oldSpaceSize
);
/arkcompiler/ets_runtime/ecmascript/tests/
H
A
D
gc_second_test.cpp
220
size_t
oldSpaceSize
= heap->GetOldSpace()->GetHeapObjectSize() + heap->GetHugeObjectSpace()->GetHeapObjectSize() +
in HWTEST_F_L0()
local
225
auto newOldSpaceLimit = heap->GetMemController()->CalculateAllocLimit(
oldSpaceSize
, MIN_OLD_SPACE_LIMIT,
in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
heap.cpp
1624
size_t
oldSpaceSize
= oldSpace_->GetHeapObjectSize() + hugeObjectSpace_->GetHeapObjectSize() +
in RecomputeLimits()
local
1630
size_t newOldSpaceLimit = memController_->CalculateAllocLimit(
oldSpaceSize
, MIN_OLD_SPACE_LIMIT,
in RecomputeLimits()
Completed in 7 milliseconds