/external/tensorflow/tensorflow/core/lib/io/ |
D | table.cc | 75 rep->cache_id = (options.block_cache ? options.block_cache->NewId() : 0); in Open() 105 Cache* block_cache = table->rep_->options.block_cache; in BlockReader() local 117 if (block_cache != nullptr) { in BlockReader() 122 cache_handle = block_cache->Lookup(key); in BlockReader() 124 block = reinterpret_cast<Block*>(block_cache->Value(cache_handle)); in BlockReader() 129 cache_handle = block_cache->Insert(key, block, block->size(), in BlockReader() 147 iter->RegisterCleanup(&ReleaseBlock, block_cache, cache_handle); in BlockReader()
|
D | table_options.h | 70 Cache* block_cache = nullptr; member
|
/external/sdv/vsomeip/third_party/boost/regex/include/boost/regex/v5/ |
D | mem_block_cache.hpp | 71 static mem_block_cache block_cache = { { {nullptr} } }; in instance() local 72 return block_cache; in instance() 137 static mem_block_cache block_cache = { 0, 0, BOOST_STATIC_MUTEX_INIT, }; 139 static mem_block_cache block_cache = { 0, 0, }; 141 return block_cache;
|
/external/sdv/vsomeip/third_party/boost/regex/include/boost/regex/v4/ |
D | mem_block_cache.hpp | 75 static mem_block_cache block_cache = { { {nullptr} } }; in instance() local 76 return block_cache; in instance() 141 static mem_block_cache block_cache = { 0, 0, BOOST_STATIC_MUTEX_INIT, }; 143 static mem_block_cache block_cache = { 0, 0, }; 145 return block_cache;
|
/external/leveldb/table/ |
D | table.cc | 72 rep->cache_id = (options.block_cache ? options.block_cache->NewId() : 0); in Open() 156 Cache* block_cache = table->rep_->options.block_cache; in BlockReader() local 168 if (block_cache != nullptr) { in BlockReader() 173 cache_handle = block_cache->Lookup(key); in BlockReader() 175 block = reinterpret_cast<Block*>(block_cache->Value(cache_handle)); in BlockReader() 181 cache_handle = block_cache->Insert(key, block, block->size(), in BlockReader() 200 iter->RegisterCleanup(&ReleaseBlock, block_cache, cache_handle); in BlockReader()
|
/external/squashfs-tools/kernel-2.4/fs/squashfs/ |
D | inode.c | 277 if (msblk->block_cache[i].block == block) in squashfs_get_cached_block() 287 if (msblk->block_cache[i].block != in squashfs_get_cached_block() 305 if (msblk->block_cache[i].block == in squashfs_get_cached_block() 307 if (!(msblk->block_cache[i].data = in squashfs_get_cached_block() 317 msblk->block_cache[i].block = SQUASHFS_USED_BLK; in squashfs_get_cached_block() 320 if (!(msblk->block_cache[i].length = in squashfs_get_cached_block() 322 msblk->block_cache[i].data, in squashfs_get_cached_block() 331 msblk->block_cache[i].block = block; in squashfs_get_cached_block() 332 msblk->block_cache[i].next_index = next_index; in squashfs_get_cached_block() 336 if (msblk->block_cache[i].block != block) { in squashfs_get_cached_block() [all …]
|
/external/squashfs-tools/kernel/fs/squashfs/ |
D | super.c | 196 msblk->block_cache = squashfs_cache_init("metadata", in squashfs_fill_super() 198 if (msblk->block_cache == NULL) in squashfs_fill_super() 280 squashfs_cache_delete(msblk->block_cache); in squashfs_fill_super() 329 squashfs_cache_delete(sbi->block_cache); in squashfs_put_super()
|
D | squashfs_fs_sb.h | 57 struct squashfs_cache *block_cache; member
|
D | symlink.c | 84 entry = squashfs_cache_get(sb, msblk->block_cache, block, 0); in squashfs_symlink_readpage()
|
D | cache.c | 342 entry = squashfs_cache_get(sb, msblk->block_cache, *block, 0); in squashfs_read_metadata()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_sync.cc | 64 u32 idx = block_alloc_.Alloc(&thr->proc()->block_cache); in AllocBlock() 99 block_alloc_.Free(&proc->block_cache, idx & ~kFlagMask); in FreeRange() 292 block_alloc_.FlushCache(&proc->block_cache); in OnProcIdle()
|
D | tsan_rtl.h | 342 DenseSlabAllocCache block_cache; member
|
/external/squashfs-tools/kernel/include/linux/ |
D | squashfs_fs_sb.h | 56 struct squashfs_cache *block_cache; member
|
/external/leveldb/include/leveldb/ |
D | options.h | 94 Cache* block_cache = nullptr; member
|
/external/squashfs-tools/kernel-2.4/include/linux/ |
D | squashfs_fs_sb.h | 48 struct squashfs_cache *block_cache; member
|
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | file_block_cache.h | 51 virtual void Configure(const FileBlockCache* block_cache) = 0;
|
D | gcs_file_system.h | 92 const FileBlockCache* block_cache) = 0;
|
/external/leveldb/db/ |
D | repair.cc | 54 owns_cache_(options_.block_cache != options.block_cache), in Repairer() 66 delete options_.block_cache; in ~Repairer()
|
D | autocompact_test.cc | 18 options_.block_cache = tiny_cache_; in AutoCompactTest()
|
D | db_impl.cc | 115 if (result.block_cache == nullptr) { in SanitizeOptions() 116 result.block_cache = NewLRUCache(8 << 20); in SanitizeOptions() 133 owns_cache_(options_.block_cache != raw_options.block_cache), in DBImpl() 177 delete options_.block_cache; in ~DBImpl() 1432 size_t total_usage = options_.block_cache->TotalCharge(); in GetProperty()
|
D | corruption_test.cc | 30 options_.block_cache = tiny_cache_; in CorruptionTest()
|
D | fault_injection_test.cc | 384 options_.block_cache = tiny_cache_; in FaultInjectionTest()
|
D | c.cc | 414 opt->rep.block_cache = c->rep; in leveldb_options_set_cache()
|
/external/leveldb/doc/ |
D | index.md | 341 each file stores a sequence of compressed blocks. If options.block_cache is 348 options.block_cache = leveldb::NewLRUCache(100 * 1048576); // 100MB cache 353 delete options.block_cache;
|
/external/leveldb/benchmarks/ |
D | db_bench.cc | 764 options.block_cache = cache_; in Open()
|