Home
last modified time | relevance | path

Searched refs:max_size (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/scripts/
Dmemdump.py124 max_size = min_size
128 elif size > max_size:
129 max_size = size
131 if min_size == max_size:
134 return 'from {} to {} bytes'.format(min_size, max_size)
/arkcompiler/runtime_core/libpandabase/mem/
Dmalloc_mem_pool-inl.h47 size_t max_size = size + sizeof(ArenaT) + max_alignment_drift; in AllocArenaImpl() local
48 …et = panda::os::mem::AlignedAlloc(std::max(DEFAULT_ALIGNMENT_IN_BYTES, alignof(ArenaT)), max_size); in AllocArenaImpl()
50 size_t size_for_buff = max_size - sizeof(ArenaT); in AllocArenaImpl()
56 …ASSERT(reinterpret_cast<std::uintptr_t>(ret) + max_size >= reinterpret_cast<std::uintptr_t>(buff) … in AllocArenaImpl()
Darena_allocator_stl_adapter.h102 size_type max_size() const in max_size() function
122 ASSERT(n <= max_size());
Dmmap_mem_pool.h208 void Initialize(uintptr_t min_addr, size_t max_size) in Initialize() argument
211 max_size_ = max_size; in Initialize()
/arkcompiler/ets_runtime/ecmascript/mem/
Dchunk_allocator.h67 size_type max_size() const in max_size() function
86 ASSERT(n <= max_size());
Dcaddress_allocator.h56 size_type max_size() const in max_size() function
74 ASSERT(n <= max_size());
/arkcompiler/runtime_core/platforms/windows/libpandabase/
Dmem.cpp119 const off_t max_size = off + static_cast<off_t>(len); in mmap() local
120 const auto max_size_low = mem_select_lower_bound(max_size); in mmap()
121 const auto max_size_high = mem_select_upper_bound(max_size); in mmap()