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

References

projects/compiler-rt/lib/asan/asan_allocator.cpp
  168     void *res = get_allocator().Allocate(cache_, size, 1);
  452       allocated = allocator.Allocate(cache, needed_size, 8);
  456       allocated = allocator.Allocate(cache, needed_size, 8);
projects/compiler-rt/lib/hwasan/hwasan_allocator.cpp
  118     allocated = allocator.Allocate(t->allocator_cache(), size, alignment);
  122     allocated = allocator.Allocate(cache, size, alignment);
projects/compiler-rt/lib/lsan/lsan_allocator.cpp
   84   void *p = allocator.Allocate(GetAllocatorCache(), size, alignment);
projects/compiler-rt/lib/msan/msan_allocator.cpp
  146     allocated = allocator.Allocate(cache, size, alignment);
  150     allocated = allocator.Allocate(cache, size, alignment);
projects/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cpp
  113     return internal_allocator()->Allocate(&internal_allocator_cache, size,
  116   return internal_allocator()->Allocate(cache, size, alignment);
projects/compiler-rt/lib/sanitizer_common/sanitizer_allocator_combined.h
  100       return Allocate(cache, new_size, alignment);
  108     void *new_p = Allocate(cache, new_size, alignment);
projects/compiler-rt/lib/tsan/rtl/tsan_mman.cpp
  163   void *p = allocator()->Allocate(&thr->proc()->alloc_cache, sz, align);