Home
last modified time | relevance | path

Searched refs:AllocArray (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/runtime_core/libpandabase/mem/
Darena_allocator.h107 [[nodiscard]] T *AllocArray(size_t arr_length);
238 T *ArenaAllocatorT<use_oom_handler>::AllocArray(size_t arr_length) in AllocArray() function
Darena_allocator_stl_adapter.h123 return allocator_->template AllocArray<T>(n);
/arkcompiler/ets_runtime/ecmascript/mem/
Dchunk_allocator.h121 [[nodiscard]] T *AllocArray(size_t size) in AllocArray() function
Dcaddress_allocator.h135 [[nodiscard]] T *AllocArray(size_t size) in AllocArray() function
/arkcompiler/runtime_core/libpandabase/tests/
Darena_allocator_test.cpp184 tmp = aa.AllocArray<int>(1024);
/arkcompiler/runtime_core/libpandabase/utils/
Dbit_table.h651 auto data = allocator_->AllocArray<uint32_t>(data_size_in_bytes / sizeof(uint32_t)); in Add()