Home
last modified time | relevance | path

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

/rocksdb-6.9/memory/
Darena.cc52 aligned_alloc_ptr_ = inline_block_; in Arena()
113 aligned_alloc_ptr_ = block_head + bytes; in AllocateFallback()
117 aligned_alloc_ptr_ = block_head; in AllocateFallback()
185 reinterpret_cast<uintptr_t>(aligned_alloc_ptr_) & (kAlignUnit - 1); in AllocateAligned()
190 result = aligned_alloc_ptr_ + slop; in AllocateAligned()
191 aligned_alloc_ptr_ += needed; in AllocateAligned()
Darena.h107 char* aligned_alloc_ptr_ = nullptr; variable