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

  /external/compiler-rt/lib/msan/
msan_allocator.cc 87 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
89 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
93 static AllocatorCache fallback_allocator_cache;
100 AllocatorCache *GetAllocatorCache(MsanThreadLocalMallocStorage *ms) {
102 CHECK_LE(sizeof(AllocatorCache), sizeof(ms->allocator_cache));
103 return reinterpret_cast<AllocatorCache *>(ms->allocator_cache);
120 AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage());
124 AllocatorCache *cache = &fallback_allocator_cache;
162 AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage());
166 AllocatorCache *cache = &fallback_allocator_cache
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator.h 148 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
150 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
156 AllocatorCache allocator_cache;
asan_allocator.cc 132 explicit QuarantineCallback(AllocatorCache *cache)
170 AllocatorCache *cache_;
196 // static THREADLOCAL AllocatorCache cache;
197 AllocatorCache *GetAllocatorCache(AsanThreadLocalMallocStorage *ms) {
233 AllocatorCache fallback_allocator_cache;
366 AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage());
371 AllocatorCache *cache = &fallback_allocator_cache;
500 AllocatorCache *ac = GetAllocatorCache(ms);
505 AllocatorCache *ac = &fallback_allocator_cache;
583 AllocatorCache *ac = GetAllocatorCache(ms)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 43 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
45 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
50 static THREADLOCAL AllocatorCache cache;
sanitizer_allocator_test.cc 421 <class PrimaryAllocator, class SecondaryAllocator, class AllocatorCache>
424 CombinedAllocator<PrimaryAllocator, AllocatorCache, SecondaryAllocator>
429 AllocatorCache cache;
496 template <class AllocatorCache>
498 AllocatorCache cache;
499 typedef typename AllocatorCache::Allocator Allocator;
548 typedef SizeClassAllocatorLocalCache<Allocator64> AllocatorCache;
549 static AllocatorCache static_allocator_cache;
552 typedef AllocatorCache::Allocator Allocator;
560 typedef AllocatorCache::Allocator Allocator
    [all...]
  /external/compiler-rt/lib/lsan/
lsan_allocator.cc 51 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
53 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
57 static THREADLOCAL AllocatorCache cache;
  /external/compiler-rt/lib/scudo/
scudo_allocator.cpp 40 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
42 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache, SecondaryAllocator>
161 static thread_local AllocatorCache Cache;
206 explicit QuarantineCallback(AllocatorCache *Cache)
239 AllocatorCache *Cache_;
276 AllocatorCache FallbackAllocatorCache;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 323 typedef SizeClassAllocatorLocalCache<ThisT> AllocatorCache;
353 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c,
538 NOINLINE Batch* PopulateFreeList(AllocatorStats *stat, AllocatorCache *c,
716 typedef SizeClassAllocatorLocalCache<ThisT> AllocatorCache;
751 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c,
894 void PopulateFreeList(AllocatorStats *stat, AllocatorCache *c,
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h 73 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
75 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
339 AllocatorCache alloc_cache;

Completed in 366 milliseconds