Searched refs:allocation (Results 1 – 7 of 7) sorted by relevance
| /rocksdb-6.9/table/ |
| D | format.h | 233 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/ |
| D | compression.h | 254 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/ |
| D | plain_table_reader.cc | 330 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/ |
| D | thirdparty.inc | 218 # ZSTD_STATIC_LINKING_ONLY only allows us to create an allocation functions override
|
| D | WINDOWS_PORT.md | 73 …x, however, on a positive note, the end of file position is also not modified after pre-allocation.
|
| D | HISTORY.md | 160 * Fix a bug in file ingestion caused by incorrect file number allocation when the number of column …
|
| /rocksdb-6.9/table/block_based/ |
| D | block_based_table_reader.cc | 141 return new UncompressionDict(contents.data, std::move(contents.allocation), in Create()
|