Home
last modified time | relevance | path

Searched refs:arrLength (Results 1 - 9 of 9) sorted by relevance

/arkcompiler/runtime_core/static_core/libpandabase/mem/
H A Darena_allocator.h105 [[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 Drunslots_allocator.h82 [[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 Dregion_allocator.h183 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 Dhumongous_obj_allocator.h74 [[nodiscard]] T *AllocArray(size_t arrLength);
H A Dfreelist_allocator.h99 [[nodiscard]] T *AllocArray(size_t arrLength);
/arkcompiler/ets_runtime/ecmascript/base/
H A Dfast_json_stringifier.cpp216 uint32_t arrLength = propertyArray->GetLength(); in SerializeJSONObject() local
217 for (uint32_t i = 0; i < arrLength; i++) { in SerializeJSONObject()
H A Djson_stringifier.cpp409 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 Druntime_stubs-inl.h3052 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 Dslowpath_lowering.cpp884 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