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:snapshotData
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
H
A
D
snapshot_processor.h
181
static inline size_t GetHugeObjectSize(uint64_t
snapshotData
)
in GetHugeObjectSize()
argument
183
return
snapshotData
>> Constants::UINT_32_BITS_COUNT;
in GetHugeObjectSize()
187
static inline size_t GetHugeObjectRegionIndex(uint64_t
snapshotData
)
in GetHugeObjectRegionIndex()
argument
189
return
snapshotData
& Constants::MAX_UINT_32;
in GetHugeObjectRegionIndex()
H
A
D
snapshot_processor.cpp
1140
uint64_t
snapshotData
= region->GetSnapshotData();
in StatisticsHugeObjectSize()
1142
objSize += SnapshotHelper::GetHugeObjectSize(
snapshotData
);
in StatisticsHugeObjectSize()
1175
uint64_t
snapshotData
= regionIndex_;
in AllocateObjectToLocalSpace()
local
1178
snapshotData
+= SnapshotHelper::EncodeHugeObjectSize(objectSize);
in AllocateObjectToLocalSpace()
1180
current->SetSnapshotData(
snapshotData
);
in AllocateObjectToLocalSpace()
1867
uint64_t
snapshotData
= currentRegion->GetSnapshotData();
in EncodeTaggedObject()
local
1868
size_t regionIndex = SnapshotHelper::GetHugeObjectRegionIndex(
snapshotData
);
in EncodeTaggedObject()
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
bytecode_info_collector.h
318
void StoreDataToGlobalData(SnapshotGlobalData &
snapshotData
)
in StoreDataToGlobalData()
argument
320
snapshotCPData_->StoreDataToGlobalData(
snapshotData
, GetSkippedMethodSet());
in StoreDataToGlobalData()
/arkcompiler/ets_runtime/ecmascript/compiler/aot_snapshot/
H
A
D
snapshot_constantpool_data.h
131
void StoreDataToGlobalData(SnapshotGlobalData &
snapshotData
, const std::set<uint32_t> &skippedMethods) const;
H
A
D
snapshot_constantpool_data.cpp
494
void SnapshotConstantPoolData::StoreDataToGlobalData(SnapshotGlobalData &
snapshotData
,
in StoreDataToGlobalData()
argument
498
info->StoreDataToGlobalData(
snapshotData
, skippedMethods);
in StoreDataToGlobalData()
Completed in 6 milliseconds