Searched refs:CoverBegin (Results 1 – 2 of 2) sorted by relevance
145 ALWAYS_INLINE uintptr_t CoverBegin() const { in CoverBegin() function156 const uintptr_t addr = CoverBegin() + bit_index * kAlignment; in AddrFromBitIndex()163 uintptr_t result = (addr - CoverBegin()) / kAlignment; in BitIndexFromAddr()164 DCHECK(result < BitmapSize()) << CoverBegin() << " <= " << addr << " < " << CoverEnd(); in BitIndexFromAddr()173 bool ret = (addr - CoverBegin()) / kAlignment < BitmapSize(); in HasAddress()175 DCHECK(CoverBegin() <= addr && addr < CoverEnd()) in HasAddress()176 << CoverBegin() << " <= " << addr << " < " << CoverEnd(); in HasAddress()
230 ALWAYS_INLINE uintptr_t Begin() const { return MemRangeBitmap::CoverBegin(); } in Begin()