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:arrLength
(Results
1 - 9
of
9
) sorted by relevance
/arkcompiler/runtime_core/static_core/libpandabase/mem/
H
A
D
arena_allocator.h
105
[[nodiscard]] T *AllocArray(size_t
arrLength
);
236
T *ArenaAllocatorT<USE_OOM_HANDLER>::AllocArray(size_t
arrLength
)
in AllocArray()
argument
239
return static_cast<T *>(Alloc(sizeof(T) *
arrLength
));
in AllocArray()
/arkcompiler/runtime_core/static_core/runtime/mem/
H
A
D
runslots_allocator.h
82
[[nodiscard]] T *AllocArray(size_t
arrLength
);
442
T *RunSlotsAllocator<AllocConfigT, LockConfigT>::AllocArray(size_t
arrLength
)
in AllocArray()
argument
445
return static_cast<T *>(Alloc(sizeof(T) *
arrLength
));
in AllocArray()
H
A
D
region_allocator.h
183
T *AllocArray(size_t
arrLength
)
in AllocArray()
argument
185
return static_cast<T *>(Alloc(sizeof(T) *
arrLength
));
in AllocArray()
608
T *AllocArray(size_t
arrLength
)
in AllocArray()
argument
610
return static_cast<T *>(Alloc(sizeof(T) *
arrLength
));
in AllocArray()
H
A
D
humongous_obj_allocator.h
74
[[nodiscard]] T *AllocArray(size_t
arrLength
);
H
A
D
freelist_allocator.h
99
[[nodiscard]] T *AllocArray(size_t
arrLength
);
/arkcompiler/ets_runtime/ecmascript/base/
H
A
D
fast_json_stringifier.cpp
216
uint32_t
arrLength
= propertyArray->GetLength();
in SerializeJSONObject()
local
217
for (uint32_t i = 0; i <
arrLength
; i++) {
in SerializeJSONObject()
H
A
D
json_stringifier.cpp
409
uint32_t
arrLength
= propertyArray->GetLength();
in SerializeJSONObject()
local
410
for (uint32_t i = 0; i <
arrLength
; i++) {
in SerializeJSONObject()
/arkcompiler/ets_runtime/ecmascript/stubs/
H
A
D
runtime_stubs-inl.h
3052
size_t
arrLength
= argc - firstArgOffset;
3053
JSHandle<TaggedArray> args = thread->GetEcmaVM()->GetFactory()->NewTaggedArray(
arrLength
);
3054
for (size_t i = 0; i <
arrLength
; ++i) {
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
slowpath_lowering.cpp
884
const size_t
arrLength
= method->GetNumberVRegs() + 1; // 1: env vreg
in SaveFrameToContext()
local
885
GateRef length = builder_.Int32(
arrLength
);
in SaveFrameToContext()
Completed in 20 milliseconds