Home
last modified time | relevance | path

Searched refs:CacheAllocationPtr (Results 1 – 11 of 11) sorted by relevance

/rocksdb-6.9/memory/
Dmemory_allocator.h27 using CacheAllocationPtr = std::unique_ptr<char[], CustomDeleter>; variable
29 inline CacheAllocationPtr AllocateBlock(size_t size, in AllocateBlock()
33 return CacheAllocationPtr(block, allocator); in AllocateBlock()
35 return CacheAllocationPtr(new char[size]); in AllocateBlock()
/rocksdb-6.9/table/
Dblock_fetcher.h89 CacheAllocationPtr heap_buf_;
90 CacheAllocationPtr compressed_buf_;
Dformat.h233 CacheAllocationPtr allocation;
247 BlockContents(CacheAllocationPtr&& _data, size_t _size) in BlockContents()
Dmeta_blocks.h107 CacheAllocationPtr* verification_buf,
Dblock_fetcher.cc115 heap_buf_ = CacheAllocationPtr(raw_data.release()); in TryGetCompressedBlockFromPersistentCache()
Dformat.cc344 CacheAllocationPtr ubuf; in UncompressBlockContentsForCompressionType()
Dmeta_blocks.cc199 CacheAllocationPtr* verification_buf, in ReadProperties()
/rocksdb-6.9/util/
Dcompression.h227 CacheAllocationPtr allocation_;
254 UncompressionDict(Slice slice, CacheAllocationPtr&& allocation, in UncompressionDict()
257 UncompressionDict(Slice slice, CacheAllocationPtr&& allocation, in UncompressionDict()
758 inline CacheAllocationPtr Zlib_Uncompress(
922 inline CacheAllocationPtr BZip2_Uncompress(
1076 inline CacheAllocationPtr LZ4_Uncompress(const UncompressionInfo& info,
1302 inline CacheAllocationPtr ZSTD_Uncompress(
/rocksdb-6.9/table/plain/
Dplain_table_reader.h162 CacheAllocationPtr index_block_alloc_;
163 CacheAllocationPtr bloom_block_alloc_;
/rocksdb-6.9/table/block_based/
Dblock_based_table_reader.cc214 CacheAllocationPtr CopyBufferToHeap(MemoryAllocator* allocator, Slice& buf) { in CopyBufferToHeap()
215 CacheAllocationPtr heap_buf; in CopyBufferToHeap()
741 CacheAllocationPtr tmp_buf; in TryReadPropertiesWithGlobalSeqno()
/rocksdb-6.9/tools/
Ddb_bench_tool.cc3511 CacheAllocationPtr uncompressed; in Uncompress()