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

References

include/llvm/Support/Memory.h
   40     size_t allocatedSize() const { return AllocatedSize; }
lib/Support/Unix/Memory.inc
  150   Result.AllocatedSize = PageSize*NumPages;
  165   if (M.Address == nullptr || M.AllocatedSize == 0)
  168   if (0 != ::munmap(M.Address, M.AllocatedSize))
  172   M.AllocatedSize = 0;
  180   if (M.Address == nullptr || M.AllocatedSize == 0)
  188   uintptr_t End = alignAddr((const uint8_t *)M.Address + M.AllocatedSize, PageSize);
  212     Memory::InvalidateInstructionCache(M.Address, M.AllocatedSize);