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:NODE_BLOCK_SIZE
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/
H
A
D
handle_storage-inl.h
39
auto n = allocator_->New<std::array<T,
NODE_BLOCK_SIZE
>>();
in NewHandle()
77
for (uint32_t j = offset; j <
NODE_BLOCK_SIZE
; ++j) {
in ZapFreedHandles()
94
uint32_t count = (i != nid) ?
NODE_BLOCK_SIZE
: offset;
in UpdateHeapObject()
114
offset =
NODE_BLOCK_SIZE
;
in VisitGCRoots()
118
uint32_t count = (i != nid) ?
NODE_BLOCK_SIZE
: offset;
in VisitGCRoots()
138
offset =
NODE_BLOCK_SIZE
;
in UpdateHeapObject()
142
uint32_t count = (i != nid) ?
NODE_BLOCK_SIZE
: offset;
in UpdateHeapObject()
162
uint32_t count = (i != nid) ?
NODE_BLOCK_SIZE
: offset;
in VisitGCRoots()
H
A
D
handle_storage.h
56
static const uint32_t
NODE_BLOCK_SIZE
= 1U << NODE_BLOCK_SIZE_LOG2;
member in ark::HandleStorage
57
static const uint32_t NODE_BLOCK_SIZE_MASK =
NODE_BLOCK_SIZE
- 1;
74
PandaVector<std::array<T,
NODE_BLOCK_SIZE
> *> nodes_;
/arkcompiler/ets_runtime/ecmascript/
H
A
D
ecma_context.cpp
966
auto end = (i != nid) ? &(node->data()[
NODE_BLOCK_SIZE
]) : handleScopeStorageNext_;
in Iterate()
995
auto end = (i != nid) ? &(node->data()[
NODE_BLOCK_SIZE
]) : handleScopeStorageNext_;
in IterateHandle()
1008
auto n = new std::array<JSTaggedType,
NODE_BLOCK_SIZE
>();
in ExpandHandleStorage()
1012
handleScopeStorageEnd_ = &n->data()[
NODE_BLOCK_SIZE
];
in ExpandHandleStorage()
1017
handleScopeStorageEnd_ = &lastNode->data()[
NODE_BLOCK_SIZE
];
in ExpandHandleStorage()
1037
NODE_BLOCK_SIZE
* sizeof(JSTaggedType), 0,
in ShrinkHandleStorage()
1038
NODE_BLOCK_SIZE
* sizeof(JSTaggedType)) !=
in ShrinkHandleStorage()
1060
auto n = new std::array<JSTaggedType,
NODE_BLOCK_SIZE
>();
in ExpandPrimitiveStorage()
1064
primitiveScopeStorageEnd_ = &n->data()[
NODE_BLOCK_SIZE
];
in ExpandPrimitiveStorage()
1069
primitiveScopeStorageEnd_ = &lastNode->data()[
NODE_BLOCK_SIZE
];
in ExpandPrimitiveStorage()
[all...]
H
A
D
ecma_context.h
743
static const uint32_t
NODE_BLOCK_SIZE
= 1U << NODE_BLOCK_SIZE_LOG2;
member in panda::ecmascript::EcmaContext
747
std::vector<std::array<JSTaggedType,
NODE_BLOCK_SIZE
> *> handleStorageNodes_ {};
758
std::vector<std::array<JSTaggedType,
NODE_BLOCK_SIZE
> *> primitiveStorageNodes_ {};
Completed in 5 milliseconds