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:spaceSize
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/serializer/
H
A
D
serialize_data.h
355
void AlignSpaceObjectSize(size_t &
spaceSize
, size_t objectSize)
357
size_t alignRegionSize = AlignUpRegionAvailableSize(
spaceSize
);
358
if (UNLIKELY(
spaceSize
+ objectSize > alignRegionSize)) {
359
regionRemainSizeVector_.push_back(alignRegionSize -
spaceSize
);
360
spaceSize
= alignRegionSize;
362
spaceSize
+= objectSize;
363
ASSERT(
spaceSize
<= SnapshotEnv::MAX_UINT_32);
/arkcompiler/runtime_core/static_core/runtime/tests/
H
A
D
rem_set_test.cpp
46
size_t
spaceSize
= options_.GetHeapSizeLimit();
in RemSetTest()
local
47
spaces_.youngSpace_.Initialize(
spaceSize
,
spaceSize
);
in RemSetTest()
48
spaces_.memSpace_.Initialize(
spaceSize
,
spaceSize
);
in RemSetTest()
H
A
D
region_allocator_test.cpp
48
size_t
spaceSize
= options_.GetHeapSizeLimit();
in RegionAllocatorTestBase()
local
49
size_t youngSize =
spaceSize
;
in RegionAllocatorTestBase()
55
spaces_.memSpace_.Initialize(
spaceSize
,
spaceSize
);
in RegionAllocatorTestBase()
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
H
A
D
snapshot.cpp
221
size_t Snapshot::AlignUpPageSize(size_t
spaceSize
)
in AlignUpPageSize()
argument
223
if (
spaceSize
% Constants::PAGE_SIZE_ALIGN_UP == 0) {
in AlignUpPageSize()
224
return
spaceSize
;
in AlignUpPageSize()
226
return Constants::PAGE_SIZE_ALIGN_UP * (
spaceSize
/ Constants::PAGE_SIZE_ALIGN_UP + 1);
in AlignUpPageSize()
H
A
D
snapshot.h
75
size_t AlignUpPageSize(size_t
spaceSize
);
Completed in 7 milliseconds