HomeSort by: relevance | last modified time | path
    Searched refs:AllocatorCache (Results 1 - 25 of 46) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_linux.cc 26 static THREADLOCAL AllocatorCache allocator_cache;
27 AllocatorCache *GetAllocatorCache() { return &allocator_cache; }
lsan_common_mac.cc 40 AllocatorCache cache;
66 ptr->cache = AllocatorCache();
95 AllocatorCache *GetAllocatorCache() { return &get_tls_val(true)->cache; }
lsan_allocator.h 103 using AllocatorCache = AllocatorCacheASVT<LocalAddressSpaceView>;
117 AllocatorCache *GetAllocatorCache();
  /src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan_linux.cpp 26 static THREADLOCAL AllocatorCache allocator_cache;
27 AllocatorCache *GetAllocatorCache() { return &allocator_cache; }
lsan_allocator.h 120 using AllocatorCache = Allocator::AllocatorCache;
122 Allocator::AllocatorCache *GetAllocatorCache();
lsan_common_mac.cpp 56 AllocatorCache cache;
82 ptr->cache = AllocatorCache();
113 AllocatorCache *GetAllocatorCache() { return &get_tls_val(true)->cache; }
lsan_common_fuchsia.cpp 123 end - params->allocator_caches[i] >= sizeof(AllocatorCache)) {
127 uptr begin2 = params->allocator_caches[i] + sizeof(AllocatorCache);
  /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_linux.cpp 25 static THREADLOCAL AllocatorCache allocator_cache;
26 AllocatorCache *GetAllocatorCache() { return &allocator_cache; }
lsan_allocator.h 111 using AllocatorCache = Allocator::AllocatorCache;
113 Allocator::AllocatorCache *GetAllocatorCache();
lsan_common_mac.cpp 39 AllocatorCache cache;
65 ptr->cache = AllocatorCache();
94 AllocatorCache *GetAllocatorCache() { return &get_tls_val(true)->cache; }
lsan_common_fuchsia.cpp 113 end - params->allocator_caches[i] <= sizeof(AllocatorCache)) {
117 uptr begin2 = params->allocator_caches[i] + sizeof(AllocatorCache);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_combined.h 20 // PrimaryAllocator is used via a local AllocatorCache.
26 using AllocatorCache = typename PrimaryAllocator::AllocatorCache;
44 void *Allocate(AllocatorCache *cache, uptr size, uptr alignment) {
89 void Deallocate(AllocatorCache *cache, void *p) {
97 void *Reallocate(AllocatorCache *cache, void *p, uptr new_size,
155 void InitCache(AllocatorCache *cache) {
159 void DestroyCache(AllocatorCache *cache) {
163 void SwallowCache(AllocatorCache *cache) {
sanitizer_allocator_internal.h 40 typedef InternalAllocator::AllocatorCache InternalAllocatorCache;
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_allocator_combined.h 20 // PrimaryAllocator is used via a local AllocatorCache.
26 using AllocatorCache = typename PrimaryAllocator::AllocatorCache;
44 void *Allocate(AllocatorCache *cache, uptr size, uptr alignment) {
89 void Deallocate(AllocatorCache *cache, void *p) {
97 void *Reallocate(AllocatorCache *cache, void *p, uptr new_size,
155 void InitCache(AllocatorCache *cache) {
159 void DestroyCache(AllocatorCache *cache) {
163 void SwallowCache(AllocatorCache *cache) {
sanitizer_allocator_internal.h 40 typedef InternalAllocator::AllocatorCache InternalAllocatorCache;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator_combined.h 21 // PrimaryAllocator is used via a local AllocatorCache.
23 template <class PrimaryAllocator, class AllocatorCache,
48 void *Allocate(AllocatorCache *cache, uptr size, uptr alignment) {
93 void Deallocate(AllocatorCache *cache, void *p) {
101 void *Reallocate(AllocatorCache *cache, void *p, uptr new_size,
161 void InitCache(AllocatorCache *cache) {
165 void DestroyCache(AllocatorCache *cache) {
169 void SwallowCache(AllocatorCache *cache) {
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,
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_allocator.h 75 typedef Allocator::AllocatorCache AllocatorCache;
77 void AllocatorSwallowThreadLocalCache(AllocatorCache *cache);
hwasan_thread.h 55 AllocatorCache *allocator_cache() { return &allocator_cache_; }
88 AllocatorCache allocator_cache_;
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_allocator.h 93 typedef Allocator::AllocatorCache AllocatorCache;
95 void AllocatorThreadStart(AllocatorCache *cache);
96 void AllocatorThreadFinish(AllocatorCache *cache);
hwasan_thread.h 56 AllocatorCache *allocator_cache() { return &allocator_cache_; }
93 AllocatorCache allocator_cache_;
  /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/tests/
sanitizer_allocator_testlib.cc 53 typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
55 typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
60 static THREADLOCAL AllocatorCache cache;
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_allocator.h 259 using AllocatorCache = AsanAllocator::AllocatorCache;
263 AllocatorCache allocator_cache;
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_allocator.h 195 using AllocatorCache = AsanAllocator::AllocatorCache;
199 AllocatorCache allocator_cache;

Completed in 28 milliseconds

1 2