Home
last modified time | relevance | path

Searched refs:archMemoryTagGranuleSize (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dmemtag.h35 inline constexpr uptr archMemoryTagGranuleSize() { return 16; } in archMemoryTagGranuleSize() function
45 inline NORETURN uptr archMemoryTagGranuleSize() {
330 (1 << SCUDO_MIN_ALIGNMENT_LOG) >= archMemoryTagGranuleSize(); in allocatorSupportsMemoryTagging()
H A Dcombined.h946 MinAlignment >= archMemoryTagGranuleSize(),
1193 archMemoryTagGranuleSize()))); in initChunkWithMemoryTagging()
1197 memset(TaggedPtr, 0, archMemoryTagGranuleSize()); in initChunkWithMemoryTagging()
1362 storeTag(reinterpret_cast<uptr>(Ptr) - archMemoryTagGranuleSize()); in prepareTaggedChunk()
1373 uptr RoundOldPtr = roundUp(OldPtr, archMemoryTagGranuleSize()); in resizeTaggedChunk()
1378 RoundNewPtr = roundUp(NewPtr, archMemoryTagGranuleSize()); in resizeTaggedChunk()
1477 if (Addr < MemoryAddr || Addr + archMemoryTagGranuleSize() < Addr || in getInlineErrorInfo()
1478 Addr + archMemoryTagGranuleSize() > MemoryAddr + MemorySize) in getInlineErrorInfo()
1482 MemoryTags[(Addr - MemoryAddr) / archMemoryTagGranuleSize()]); in getInlineErrorInfo()
H A Dsecondary.h34 ? archMemoryTagGranuleSize()
46 sizeof(Header) % archMemoryTagGranuleSize() == 0,