HomeSort by relevance Sort by last modified time
    Searched refs:AllocatorCache (Results 1 - 8 of 8) 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 145 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
147 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
153 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;
501 AllocatorCache *ac = GetAllocatorCache(ms);
506 AllocatorCache *ac = &fallback_allocator_cache;
573 AllocatorCache *ac = GetAllocatorCache(ms)
    [all...]
  /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 413 <class PrimaryAllocator, class SecondaryAllocator, class AllocatorCache>
416 CombinedAllocator<PrimaryAllocator, AllocatorCache, SecondaryAllocator>
421 AllocatorCache cache;
490 template <class AllocatorCache>
492 AllocatorCache cache;
493 typedef typename AllocatorCache::Allocator Allocator;
542 typedef SizeClassAllocatorLocalCache<Allocator64> AllocatorCache;
543 static AllocatorCache static_allocator_cache;
546 typedef AllocatorCache::Allocator Allocator;
554 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/sanitizer_common/
sanitizer_allocator.h 322 typedef SizeClassAllocatorLocalCache<ThisT> AllocatorCache;
345 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c,
517 NOINLINE Batch* PopulateFreeList(AllocatorStats *stat, AllocatorCache *c,
695 typedef SizeClassAllocatorLocalCache<ThisT> AllocatorCache;
730 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c,
870 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,
363 AllocatorCache alloc_cache;

Completed in 1730 milliseconds