Home
last modified time | relevance | path

Searched refs:ArrayStorage (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/mem/refstorage/
Dglobal_object_storage.h117 class ArrayStorage; variable
122 ArrayStorage *globalStorage_;
123 ArrayStorage *globalFixedStorage_;
124 ArrayStorage *weakStorage_;
134 class ArrayStorage {
181 … explicit ArrayStorage(mem::InternalAllocatorPtr allocator, size_t maxSize, bool enableSizeCheck,
197 ~ArrayStorage() = default;
199 NO_COPY_SEMANTIC(ArrayStorage);
200 NO_MOVE_SEMANTIC(ArrayStorage);
Dglobal_object_storage.cpp34 globalStorage_ = allocator->New<ArrayStorage>(allocator, maxSize, enableSizeCheck); in GlobalObjectStorage()
35 weakStorage_ = allocator->New<ArrayStorage>(allocator, maxSize, enableSizeCheck); in GlobalObjectStorage()
36 globalFixedStorage_ = allocator->New<ArrayStorage>(allocator, maxSize, enableSizeCheck, true); in GlobalObjectStorage()