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

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_allocator_combined.h
   48     if (size + alignment < size) {
   51              SanitizerToolName, size, alignment);
   59     if (alignment > 8)
   60       size = RoundUpTo(size, alignment);
   68     if (primary_.CanAllocate(size, alignment))
   71       res = secondary_.Allocate(&stats_, original_size, alignment);
   72     if (alignment > 8)
   73       CHECK_EQ(reinterpret_cast<uptr>(res) & (alignment - 1), 0);