reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/scudo/scudo_allocator.cpp
   84     return IsAligned(reinterpret_cast<uptr>(Ptr), MinAlignment);
  317     if (UNLIKELY(Alignment < MinAlignment))
  318       Alignment = MinAlignment;
  320     const uptr NeededSize = RoundUpTo(Size ? Size : 1, MinAlignment) +
  322     const uptr AlignedSize = (Alignment > MinAlignment) ?
  343     if (PrimaryT::CanAllocate(AlignedSize, MinAlignment)) {
  496       void *NewPtr = allocate(NewSize, MinAlignment, FromMalloc);
  530     void *NewPtr = allocate(NewSize, MinAlignment, FromMalloc);
  566     return allocate(NMemB * Size, MinAlignment, FromMalloc, true);
  611       1 << MostSignificantSetBitIndex(SizeClassMap::kMaxSize - MinAlignment);
  707     return SetErrnoOnNull(Instance.allocate(Size, MinAlignment, FromMalloc));
projects/compiler-rt/lib/scudo/scudo_allocator.h
   69     return RoundUpTo(sizeof(PackedHeader), MinAlignment);
projects/compiler-rt/lib/scudo/scudo_allocator_secondary.h
   58   return RoundUpTo(sizeof(Header), MinAlignment);
   79     if (UNLIKELY(Alignment > MinAlignment))
  104     if (UNLIKELY(Alignment > MinAlignment)) {