HomeSort by: relevance | last modified time | path
    Searched defs:AllocatorCache (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_allocator.h 103 using AllocatorCache = AllocatorCacheASVT<LocalAddressSpaceView>;
117 AllocatorCache *GetAllocatorCache();
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_allocator.h 198 using AllocatorCache = AllocatorCacheASVT<LocalAddressSpaceView>;
213 AllocatorCache allocator_cache;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 53 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
55 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
60 static THREADLOCAL AllocatorCache cache;
sanitizer_allocator_test.cc 624 <class PrimaryAllocator, class SecondaryAllocator, class AllocatorCache>
627 CombinedAllocator<PrimaryAllocator, AllocatorCache, SecondaryAllocator>
633 AllocatorCache cache;
726 template <class AllocatorCache>
728 AllocatorCache cache;
729 typedef typename AllocatorCache::Allocator Allocator;
793 typedef SizeClassAllocatorLocalCache<Allocator64> AllocatorCache;
794 static AllocatorCache static_allocator_cache;
797 typedef AllocatorCache::Allocator Allocator;
805 typedef AllocatorCache::Allocator Allocator
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_allocator.cc 120 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
122 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
126 static AllocatorCache fallback_allocator_cache;
134 AllocatorCache *GetAllocatorCache(MsanThreadLocalMallocStorage *ms) {
136 CHECK_LE(sizeof(AllocatorCache), sizeof(ms->allocator_cache));
137 return reinterpret_cast<AllocatorCache *>(ms->allocator_cache);
156 AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage());
160 AllocatorCache *cache = &fallback_allocator_cache;
204 AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage());
208 AllocatorCache *cache = &fallback_allocator_cache
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator_primary32.h 113 typedef SizeClassAllocator32LocalCache<ThisT> AllocatorCache;
159 NOINLINE TransferBatch *AllocateBatch(AllocatorStats *stat, AllocatorCache *c,
304 bool PopulateBatches(AllocatorCache *c, SizeClassInfo *sci, uptr class_id,
329 bool PopulateFreeList(AllocatorStats *stat, AllocatorCache *c,
sanitizer_allocator_primary64.h 60 typedef SizeClassAllocator64LocalCache<ThisT> AllocatorCache;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.h 88 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
90 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
354 AllocatorCache alloc_cache;

Completed in 15 milliseconds