HomeSort by relevance Sort by last modified time
    Searched refs:AllocatorCache (Results 1 - 6 of 6) sorted by null

  /external/compiler-rt/lib/msan/
msan_allocator.cc 31 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
33 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
36 static THREADLOCAL AllocatorCache cache;
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 41 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
43 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
48 static THREADLOCAL AllocatorCache cache;
sanitizer_allocator_test.cc 343 <class PrimaryAllocator, class SecondaryAllocator, class AllocatorCache>
346 CombinedAllocator<PrimaryAllocator, AllocatorCache, SecondaryAllocator>
351 AllocatorCache cache;
413 template <class AllocatorCache>
415 AllocatorCache cache;
416 typedef typename AllocatorCache::Allocator Allocator;
465 typedef SizeClassAllocatorLocalCache<Allocator64> AllocatorCache;
466 static AllocatorCache static_allocator_cache;
469 typedef AllocatorCache::Allocator Allocator;
477 typedef AllocatorCache::Allocator Allocator
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator2.cc 75 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
77 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
82 // static THREADLOCAL AllocatorCache cache;
83 AllocatorCache *GetAllocatorCache(AsanThreadLocalMallocStorage *ms) {
85 CHECK_LE(sizeof(AllocatorCache), sizeof(ms->allocator2_cache));
86 return reinterpret_cast<AllocatorCache *>(ms->allocator2_cache);
247 static AllocatorCache fallback_allocator_cache;
257 explicit QuarantineCallback(AllocatorCache *cache)
292 AllocatorCache *cache_;
342 AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage())
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 306 typedef SizeClassAllocatorLocalCache<ThisT> AllocatorCache;
329 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c,
502 NOINLINE Batch* PopulateFreeList(AllocatorStats *stat, AllocatorCache *c,
591 typedef SizeClassAllocatorLocalCache<ThisT> AllocatorCache;
625 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c,
766 void PopulateFreeList(AllocatorStats *stat, AllocatorCache *c,
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h 130 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
132 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
419 AllocatorCache alloc_cache;

Completed in 1328 milliseconds