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() {
335 (1 << SCUDO_MIN_ALIGNMENT_LOG) >= archMemoryTagGranuleSize(); in allocatorSupportsMemoryTagging()
H A Dcombined.h957 MinAlignment >= archMemoryTagGranuleSize(),
1204 archMemoryTagGranuleSize()))); in initChunkWithMemoryTagging()
1208 memset(TaggedPtr, 0, archMemoryTagGranuleSize()); in initChunkWithMemoryTagging()
1381 storeTag(reinterpret_cast<uptr>(Ptr) - archMemoryTagGranuleSize()); in prepareTaggedChunk()
1392 uptr RoundOldPtr = roundUp(OldPtr, archMemoryTagGranuleSize()); in resizeTaggedChunk()
1397 RoundNewPtr = roundUp(NewPtr, archMemoryTagGranuleSize()); in resizeTaggedChunk()
1496 if (Addr < MemoryAddr || Addr + archMemoryTagGranuleSize() < Addr || in getInlineErrorInfo()
1497 Addr + archMemoryTagGranuleSize() > MemoryAddr + MemorySize) in getInlineErrorInfo()
1501 MemoryTags[(Addr - MemoryAddr) / archMemoryTagGranuleSize()]); in getInlineErrorInfo()
H A Dsecondary.h35 ? archMemoryTagGranuleSize()
47 sizeof(Header) % archMemoryTagGranuleSize() == 0,