Home
last modified time | relevance | path

Searched defs:AsanChunk (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_allocator.cc114 struct AsanChunk: ChunkBase { struct
115 uptr Beg() { return reinterpret_cast<uptr>(this) + kChunkHeaderSize; } in Beg()
116 uptr UsedSize(bool locked_version = false) { in UsedSize()
122 void *AllocBeg(bool locked_version = false) { in AllocBeg()
131 bool AddrIsInside(uptr addr, bool locked_version = false) { in AddrIsInside()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_allocator.cc112 struct AsanChunk: ChunkBase { struct
113 uptr Beg() { return reinterpret_cast<uptr>(this) + kChunkHeaderSize; } in Beg()
114 uptr UsedSize(bool locked_version = false) { in UsedSize()
120 void *AllocBeg(bool locked_version = false) { in AllocBeg()
129 bool AddrIsInside(uptr addr, bool locked_version = false) { in AddrIsInside()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_allocator.h32 class AsanChunk; variable
H A Dasan_allocator.cpp157 class AsanChunk : public ChunkBase { class