| /rocksdb-6.9/memory/ |
| D | arena_test.cc | 44 arena.Allocate(req_sz); in MemoryAllocatedBytesTest() 50 arena.Allocate(Arena::kInlineSize - 1); in MemoryAllocatedBytesTest() 58 arena.Allocate(req_sz); in MemoryAllocatedBytesTest() 77 arena.Allocate(req_sz); in MemoryAllocatedBytesTest() 160 r = arena.Allocate(s); in SimpleTest()
|
| D | arena.cc | 63 tracker_->Allocate(kInlineSize); in Arena() 147 tracker_->Allocate(bytes); in AllocateFromHugePage() 227 tracker_->Allocate(allocated_size); in AllocateNewBlock()
|
| D | allocator.h | 26 virtual char* Allocate(size_t bytes) = 0; 41 void Allocate(size_t bytes);
|
| D | arena.h | 45 char* Allocate(size_t bytes) override; 123 inline char* Arena::Allocate(size_t bytes) { in Allocate() function
|
| D | concurrent_arena.h | 50 char* Allocate(size_t bytes) override { in Allocate() function 52 [=]() { return arena_.Allocate(bytes); }); in Allocate()
|
| D | memory_allocator.h | 32 auto block = reinterpret_cast<char*>(allocator->Allocate(size)); in AllocateBlock()
|
| D | jemalloc_nodump_allocator.h | 33 void* Allocate(size_t size) override;
|
| D | jemalloc_nodump_allocator.cc | 54 void* JemallocNodumpAllocator::Allocate(size_t size) { in Allocate() function in ROCKSDB_NAMESPACE::JemallocNodumpAllocator
|
| /rocksdb-6.9/db/ |
| D | db_test_util.h | 129 virtual KeyHandle Allocate(const size_t len, char** buf) override { in Allocate() function 130 return memtable_->Allocate(len, buf); in Allocate() 294 Status Allocate(uint64_t offset, uint64_t len) override { in NewWritableFile() 295 return base_->Allocate(offset, len); in NewWritableFile() 321 Status Allocate(uint64_t offset, uint64_t len) override { in NewWritableFile() 322 return base_->Allocate(offset, len); in NewWritableFile() 377 Status Allocate(uint64_t offset, uint64_t len) override { in NewWritableFile() 378 return base_->Allocate(offset, len); in NewWritableFile()
|
| D | db_memtable_test.cc | 28 KeyHandle Allocate(const size_t len, char** buf) override { in Allocate() function in ROCKSDB_NAMESPACE::MockMemTableRep 29 return rep_->Allocate(len, buf); in Allocate()
|
| D | memtable.cc | 263 KeyHandle MemTableRep::Allocate(const size_t len, char** buf) { in Allocate() function in ROCKSDB_NAMESPACE::MemTableRep 264 *buf = allocator_->Allocate(len); in Allocate() 489 KeyHandle handle = table->Allocate(encoded_len, &buf); in Add()
|
| /rocksdb-6.9/utilities/ |
| D | env_mirror.cc | 181 Status Allocate(uint64_t offset, uint64_t length) override { in Allocate() function in ROCKSDB_NAMESPACE::WritableFileMirror 182 Status as = a_->Allocate(offset, length); in Allocate() 183 Status bs = b_->Allocate(offset, length); in Allocate()
|
| /rocksdb-6.9/include/rocksdb/ |
| D | memory_allocator.h | 26 virtual void* Allocate(size_t size) = 0;
|
| D | file_system.h | 863 Allocate(block_size * last_preallocated_block_, in PrepareWrite() 870 virtual IOStatus Allocate(uint64_t /*offset*/, uint64_t /*len*/, in Allocate() function 1338 IOStatus Allocate(uint64_t offset, uint64_t len, const IOOptions& options, in Allocate() function 1340 return target_->Allocate(offset, len, options, dbg); in Allocate()
|
| D | env.h | 879 Allocate(block_size * last_preallocated_block_, in PrepareWrite() 886 virtual Status Allocate(uint64_t /*offset*/, uint64_t /*len*/) { in Allocate() function 1522 Status Allocate(uint64_t offset, uint64_t len) override { in Allocate() function 1523 return target_->Allocate(offset, len); in Allocate()
|
| D | memtablerep.h | 88 virtual KeyHandle Allocate(const size_t len, char** buf);
|
| /rocksdb-6.9/memtable/ |
| D | alloc_tracker.cc | 25 void AllocTracker::Allocate(size_t bytes) { in Allocate() function in ROCKSDB_NAMESPACE::AllocTracker
|
| D | hash_linklist_rep.cc | 171 KeyHandle Allocate(const size_t len, char** buf) override; 522 KeyHandle HashLinkListRep::Allocate(const size_t len, char** buf) { in Allocate() function in ROCKSDB_NAMESPACE::__anoncfd1c5190111::HashLinkListRep
|
| D | skiplistrep.cc | 30 KeyHandle Allocate(const size_t len, char** buf) override { in Allocate() function in ROCKSDB_NAMESPACE::__anon1cbf76c00111::SkipListRep
|
| /rocksdb-6.9/port/win/ |
| D | io_win.h | 226 virtual Status Allocate(uint64_t offset, uint64_t len) override; 375 virtual Status Allocate(uint64_t offset, uint64_t len) override;
|
| D | io_win.cc | 281 status = Allocate(file_offset_, view_size_); in MapNewRegion() 535 Status WinMmapFile::Allocate(uint64_t offset, uint64_t len) { in Allocate() function in ROCKSDB_NAMESPACE::port::WinMmapFile 980 Status WinWritableFile::Allocate(uint64_t offset, uint64_t len) { in Allocate() function in ROCKSDB_NAMESPACE::port::WinWritableFile
|
| /rocksdb-6.9/env/ |
| D | io_posix.h | 261 virtual IOStatus Allocate(uint64_t offset, uint64_t len, 341 virtual IOStatus Allocate(uint64_t offset, uint64_t len,
|
| D | composite_env_wrapper.h | 199 Status Allocate(uint64_t offset, uint64_t len) override { in Allocate() function 202 return target_->Allocate(offset, len, io_opts, &dbg); in Allocate() 787 IOStatus Allocate(uint64_t offset, uint64_t len, const IOOptions& /*options*/, in Allocate() function 789 return status_to_io_status(target_->Allocate(offset, len)); in Allocate()
|
| D | env_encryption.cc | 301 Status Allocate(uint64_t offset, uint64_t len) override { in Allocate() function in ROCKSDB_NAMESPACE::EncryptedWritableFile 302 return file_->Allocate(offset + prefixLength_, len); in Allocate()
|
| /rocksdb-6.9/utilities/persistent_cache/ |
| D | block_cache_tier_file_buffer.h | 88 CacheWriteBuffer* Allocate() { in Allocate() function
|