Lines Matching refs:Beg
161 uptr Beg() { return reinterpret_cast<uptr>(this) + kChunkHeaderSize; } in Beg() function in __asan::AsanChunk
163 return (addr >= Beg()) && (addr < Beg() + UsedSize()); in AddrIsInside()
219 PoisonShadow(m->Beg(), RoundUpTo(m->UsedSize(), ASAN_SHADOW_GRANULARITY), in PreQuarantine()
242 PoisonShadow(m->Beg(), RoundUpTo(m->UsedSize(), ASAN_SHADOW_GRANULARITY), in Recycle()
407 uptr beg = ac->Beg(); in RePoisonChunk()
408 uptr end = ac->Beg() + ac->UsedSize(); in RePoisonChunk()
521 if (m->Beg() != addr) return false; in UpdateAllocationStack()
848 if (m->Beg() != p) return 0; in AllocationSize()
927 uptr AsanChunkView::Beg() const { return chunk_->Beg(); } in Beg() function in __asan::AsanChunkView
928 uptr AsanChunkView::End() const { return Beg() + UsedSize(); } in End()
1143 uptr chunk = m->Beg(); in PointsIntoChunk()
1155 return m ? m->Beg() : 0; in GetUserBegin()
1230 return (const void *)(m->Beg()); in AllocationBegin()