Lines Matching refs:blocks_
49 *pack += blocks_[GetBlockIdx(idx)].Stored(h.size + 1); in Store()
58 CHECK_LT(block_idx, ARRAY_SIZE(blocks_)); in Load()
59 const uptr *stack_trace = blocks_[block_idx].GetOrUnpack(this); in Load()
80 CHECK_LT(block_idx, ARRAY_SIZE(blocks_)); in Alloc()
82 return blocks_[block_idx].GetOrCreate(this) + GetInBlockIdx(start); in Alloc()
90 *pack += blocks_[block_idx].Stored(in_first); in Alloc()
91 *pack += blocks_[last_idx].Stored(count - in_first); in Alloc()
107 for (BlockInfo &b : blocks_) res += b.Pack(type, this); in Pack()
112 for (BlockInfo &b : blocks_) b.Lock(); in LockAll()
116 for (BlockInfo &b : blocks_) b.Unlock(); in UnlockAll()
120 for (BlockInfo &b : blocks_) b.TestOnlyUnmap(this); in TestOnlyUnmap()