reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

projects/compiler-rt/lib/asan/asan_allocator.h
   57   uptr Beg() const;            // First byte of user memory.

References

projects/compiler-rt/lib/asan/asan_allocator.cpp
  808 uptr AsanChunkView::End() const { return Beg() + UsedSize(); }
projects/compiler-rt/lib/asan/asan_allocator.h
   70     if (addr >= Beg() && (addr + access_size) <= End()) {
   71       *offset = addr - Beg();
   78     if (addr < Beg()) {
   79       *offset = Beg() - addr;
projects/compiler-rt/lib/asan/asan_descriptions.cpp
  121   descr->chunk_begin = chunk.Beg();