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

References

projects/compiler-rt/lib/asan/asan_allocator.cpp
  660     void *new_ptr = Allocate(new_size, 8, stack, FROM_MALLOC, true);
  681     void *ptr = Allocate(nmemb * size, 8, stack, FROM_MALLOC, false);
  875   return SetErrnoOnNull(instance.Allocate(size, 8, stack, FROM_MALLOC, true));
  895     return SetErrnoOnNull(instance.Allocate(size, 8, stack, FROM_MALLOC, true));
  909       instance.Allocate(size, GetPageSizeCached(), stack, FROM_MALLOC, true));
  923       instance.Allocate(size, PageSize, stack, FROM_MALLOC, true));
  935       instance.Allocate(size, alignment, stack, alloc_type, true));
  946       instance.Allocate(size, alignment, stack, FROM_MALLOC, true));
  956   void *ptr = instance.Allocate(size, alignment, stack, FROM_MALLOC, true);