Searched refs:map_ (Results 1 - 7 of 7) sorted by relevance

/fuchsia/zircon/system/utest/fidl-compiler/
H A Dexamples.h17 static std::map<std::string, std::string>& map() { return map_; }
20 static std::map<std::string, std::string> map_; member in class:Examples
H A Drules.mk55 std::map<std::string, std::string> Examples::map_ = {\n" >> $@ && \
/fuchsia/zircon/system/ulib/minfs/
H A Dallocator.cpp91 if ((status = allocator->map_.Reset(pool_blocks * kMinfsBlockBits)) != ZX_OK) {
94 if ((status = allocator->map_.Shrink(allocator->metadata_.PoolTotal())) != ZX_OK) {
99 if ((status = bc->AttachVmo(allocator->map_.StorageUnsafe()->GetVmo(), &map_vmoid)) != ZX_OK) {
104 auto data = allocator->map_.StorageUnsafe()->GetData();
137 if (map_.Find(false, hint_, map_.size(), 1, &bitoff_start) != ZX_OK) {
138 ZX_ASSERT(map_.Find(false, 0, hint_, 1, &bitoff_start) == ZX_OK);
141 ZX_ASSERT(map_.Set(bitoff_start, bitoff_start + 1) == ZX_OK);
152 ZX_DEBUG_ASSERT(map_.Get(index, index + 1));
153 map_
[all...]
H A Dfsck.cpp286 if (!fs_->block_allocator_->map_.Get(bno, bno + 1)) {
399 if (fs_->inodes_->inode_allocator_->map_.Get(0, 1)) {
408 if (fs_->block_allocator_->map_.Get(0, 1)) {
444 if (!fs_->inodes_->inode_allocator_->map_.Get(ino, ino + 1)) {
474 if (fs_->block_allocator_->map_.Get(n, n + 1)) {
491 if (fs_->inodes_->inode_allocator_->map_.Get(n, n + 1)) {
/fuchsia/zircon/system/dev/block/zxcrypt/
H A Ddevice.cpp153 rc = map_.Reset(Volume::kBufferSize / info->block_size);
421 ZX_DEBUG_ASSERT(map_.Get(off, off + len));
422 rc = map_.Clear(off, off + len);
472 if ((rc = map_.Find(false, hint_, map_.size(), len, &off)) == ZX_ERR_NO_RESOURCES &&
473 (rc = map_.Find(false, 0, map_.size(), len, &off)) == ZX_ERR_NO_RESOURCES) {
481 rc = map_.Set(off, off + len);
485 hint_ = (off + len) % map_.size();
H A Ddevice.h158 bitmap::RawBitmapGeneric<bitmap::DefaultStorage> map_ __TA_GUARDED(mtx_);
/fuchsia/zircon/system/ulib/minfs/include/minfs/
H A Dallocator.h213 // Extend the on-disk extent containing map_.
237 RawBitmap map_; member in class:minfs::Allocator

Completed in 84 milliseconds