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);
  670       Deallocate(old_ptr, 0, 0, stack, FROM_MALLOC);
  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));
  898       instance.Deallocate(p, 0, 0, stack, FROM_MALLOC);
  909       instance.Allocate(size, GetPageSizeCached(), stack, FROM_MALLOC, true));
  923       instance.Allocate(size, PageSize, stack, FROM_MALLOC, true));
  946       instance.Allocate(size, alignment, stack, FROM_MALLOC, true));
  956   void *ptr = instance.Allocate(size, alignment, stack, FROM_MALLOC, true);
projects/compiler-rt/lib/asan/asan_malloc_linux.cpp
  128   asan_free(ptr, &stack, FROM_MALLOC);
  136   asan_free(ptr, &stack, FROM_MALLOC);
  179   return asan_memalign(boundary, size, &stack, FROM_MALLOC);
  184   void *res = asan_memalign(boundary, size, &stack, FROM_MALLOC);