Home
last modified time | relevance | path

Searched refs:GetMetaData (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_combined.h125 void *GetMetaData(const void *p) { in GetMetaData() function
127 return primary_.GetMetaData(p); in GetMetaData()
128 return secondary_.GetMetaData(p); in GetMetaData()
H A Dsanitizer_allocator_secondary.h173 void *GetMetaData(const void *p) { in GetMetaData() function
H A Dsanitizer_allocator_primary32.h156 void *GetMetaData(const void *p) { in GetMetaData() function
H A Dsanitizer_allocator_primary64.h281 void *GetMetaData(const void *p) { in GetMetaData() function
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_allocator.cpp108 reinterpret_cast<Metadata *>(allocator.GetMetaData(allocated)); in DFsanAllocate()
121 Metadata *meta = reinterpret_cast<Metadata *>(allocator.GetMetaData(p)); in dfsan_deallocate()
138 Metadata *meta = reinterpret_cast<Metadata *>(allocator.GetMetaData(old_p)); in DFsanReallocate()
173 Metadata *b = (Metadata *)allocator.GetMetaData(p); in AllocationSize()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cpp150 reinterpret_cast<Metadata *>(allocator.GetMetaData(allocated)); in HwasanAllocate()
218 reinterpret_cast<Metadata *>(allocator.GetMetaData(aligned_ptr)); in HwasanDeallocate()
289 reinterpret_cast<Metadata *>(allocator.GetMetaData(untagged_ptr_old)); in HwasanReallocate()
312 reinterpret_cast<Metadata*>(allocator.GetMetaData(block)); in FindHeapChunkByAddress()
320 Metadata *b = (Metadata *)allocator.GetMetaData(untagged_ptr); in AllocationSize()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp180 reinterpret_cast<Metadata *>(allocator.GetMetaData(allocated)); in MsanAllocate()
199 Metadata *meta = reinterpret_cast<Metadata *>(allocator.GetMetaData(p)); in MsanDeallocate()
225 Metadata *meta = reinterpret_cast<Metadata*>(allocator.GetMetaData(old_p)); in MsanReallocate()
261 Metadata *b = (Metadata *)allocator.GetMetaData(p); in AllocationSize()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_allocator.cpp57 return reinterpret_cast<ChunkMetadata *>(allocator.GetMetaData(p)); in Metadata()