Home
last modified time | relevance | path

Searched refs:cache_ (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h77 : cache_(LINKER_INITIALIZED) { in Quarantine()
113 cache_.Transfer(c); in Drain()
115 if (cache_.Size() > GetMaxSize() && recycle_mutex_.TryLock()) in Drain()
122 cache_.Transfer(c); in DrainAndRecycle()
132 cache_.PrintStats(); in PrintStats()
144 Cache cache_; variable
157 uptr cache_size = cache_.Size(); in Recycle()
158 uptr overhead_size = cache_.OverheadSize(); in Recycle()
167 cache_.MergeBatches(&tmp); in Recycle()
171 while (cache_.Size() > min_size) { in Recycle()
[all …]
/freebsd/usr.sbin/nscd/
H A Dcachelib.h209 struct cache_ { struct
218 typedef struct cache_ *cache; argument
H A Dcachelib.c59 static struct cache_entry_ ** find_cache_entry_p(struct cache_ *,
177 find_cache_entry_p(struct cache_ *the_cache, const char *entry_name) in find_cache_entry_p()
474 struct cache_ *
477 struct cache_ *retval; in init_cache()
500 destroy_cache(struct cache_ *the_cache) in destroy_cache()
519 register_cache_entry(struct cache_ *the_cache, in register_cache_entry()
645 unregister_cache_entry(struct cache_ *the_cache, const char *entry_name) in unregister_cache_entry()
670 find_cache_entry(struct cache_ *the_cache, const char *entry_name) in find_cache_entry()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp212 : cache_(cache), in QuarantineCallback()
251 get_allocator().Deallocate(cache_, p); in Recycle()
265 void *res = get_allocator().Allocate(cache_, size, 1); in Allocate()
272 void Deallocate(void *p) const { get_allocator().Deallocate(cache_, p); } in Deallocate()
275 AllocatorCache* const cache_; member