Home
last modified time | relevance | path

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

/rocksdb-6.9/table/
Dformat.h233 CacheAllocationPtr allocation; member
248 : data(_data.get(), _size), allocation(std::move(_data)) {} in BlockContents()
253 allocation.reset(_data.release()); in BlockContents()
257 bool own_bytes() const { return allocation.get() != nullptr; } in own_bytes()
269 if (allocation.get() != nullptr) { in usable_size()
270 auto allocator = allocation.get_deleter().allocator; in usable_size()
272 return allocator->UsableSize(allocation.get(), data.size()); in usable_size()
275 return malloc_usable_size(allocation.get()); in usable_size()
294 allocation = std::move(other.allocation);
/rocksdb-6.9/util/
Dcompression.h254 UncompressionDict(Slice slice, CacheAllocationPtr&& allocation, in UncompressionDict()
257 UncompressionDict(Slice slice, CacheAllocationPtr&& allocation, in UncompressionDict()
260 : allocation_(std::move(allocation)), slice_(std::move(slice)) { in UncompressionDict()
/rocksdb-6.9/table/plain/
Dplain_table_reader.cc330 bloom_block_alloc_ = std::move(bloom_block_contents.allocation); in PopulateIndex()
341 index_block_alloc_ = std::move(index_block_contents.allocation); in PopulateIndex()
/rocksdb-6.9/
Dthirdparty.inc218 # ZSTD_STATIC_LINKING_ONLY only allows us to create an allocation functions override
DWINDOWS_PORT.md73 …x, however, on a positive note, the end of file position is also not modified after pre-allocation.
DHISTORY.md160 * Fix a bug in file ingestion caused by incorrect file number allocation when the number of column …
/rocksdb-6.9/table/block_based/
Dblock_based_table_reader.cc141 return new UncompressionDict(contents.data, std::move(contents.allocation), in Create()