Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_allocator.cpp122 reinterpret_cast<Metadata *>(allocator.GetMetaData(allocated)); in DFsanAllocate()
135 Metadata *meta = reinterpret_cast<Metadata *>(allocator.GetMetaData(p)); in dfsan_deallocate()
152 Metadata *meta = reinterpret_cast<Metadata *>(allocator.GetMetaData(old_p)); in DFsanReallocate()
187 Metadata *b = (Metadata *)allocator.GetMetaData(beg); in AllocationBegin()
201 Metadata *b = (Metadata *)allocator.GetMetaData(p); in AllocationSize()
206 return reinterpret_cast<Metadata *>(allocator.GetMetaData(p))->requested_size; in AllocationSizeFast()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cpp257 reinterpret_cast<Metadata *>(allocator.GetMetaData(allocated)); in HwasanAllocate()
299 reinterpret_cast<Metadata *>(allocator.GetMetaData(aligned_ptr)); in HwasanDeallocate()
385 reinterpret_cast<Metadata *>(allocator.GetMetaData(untagged_ptr_old)); in HwasanReallocate()
410 reinterpret_cast<Metadata*>(allocator.GetMetaData(block)); in FindHeapChunkByAddress()
423 Metadata *b = (Metadata *)allocator.GetMetaData(beg); in AllocationBegin()
437 Metadata *b = (Metadata *)allocator.GetMetaData(beg); in AllocationSize()
446 reinterpret_cast<Metadata *>(allocator.GetMetaData(aligned_ptr)); in AllocationSizeFast()
562 __hwasan::allocator.GetMetaData(reinterpret_cast<void *>(chunk))); in PointsIntoChunk()
579 __hwasan::allocator.GetMetaData(block)); in GetUserBegin()
596 chunk ? __hwasan::allocator.GetMetaData(reinterpret_cast<void *>(chunk)) in LsanMetadata()
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp218 reinterpret_cast<Metadata *>(allocator.GetMetaData(allocated)); in MsanAllocate()
243 Metadata *meta = reinterpret_cast<Metadata *>(allocator.GetMetaData(p)); in MsanDeallocate()
270 Metadata *meta = reinterpret_cast<Metadata*>(allocator.GetMetaData(old_p)); in MsanReallocate()
309 Metadata *b = (Metadata *)allocator.GetMetaData(beg); in AllocationBegin()
322 Metadata *b = (Metadata *)allocator.GetMetaData(p); in AllocationSize()
327 return reinterpret_cast<Metadata *>(allocator.GetMetaData(p))->requested_size; in AllocationSizeFast()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_combined.h123 void *GetMetaData(const void *p) { in GetMetaData() function
125 return primary_.GetMetaData(p); in GetMetaData()
126 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-14.2/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_allocator.cpp60 return reinterpret_cast<ChunkMetadata *>(allocator.GetMetaData(p)); in Metadata()