Home
last modified time | relevance | path

Searched refs:MaxCacheSize (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dquarantine_test.cpp191 static const scudo::uptr MaxCacheSize = 256UL << 10; // 256KB variable
197 Quarantine.init(MaxQuarantineSize, MaxCacheSize); in TEST()
199 EXPECT_EQ(Quarantine.getCacheSize(), MaxCacheSize); in TEST()
238 Quarantine.init(MaxQuarantineSize, MaxCacheSize); in TEST()
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dquarantine.h179 DCHECK_EQ(atomic_load_relaxed(&MaxCacheSize), 0U); in init()
186 atomic_store_relaxed(&MaxCacheSize, CacheSize); in init()
192 uptr getCacheSize() const { return atomic_load_relaxed(&MaxCacheSize); } in getCacheSize()
243 alignas(SCUDO_CACHE_LINE_SIZE) atomic_uptr MaxCacheSize = {}; variable
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/Symbolize/
H A DSymbolize.h65 size_t MaxCacheSize = member
/openbsd-src/gnu/llvm/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp428 parseIntArg(Args, OPT_cache_size_EQ, Opts.MaxCacheSize); in main()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp722 while (CacheSize > Opts.MaxCacheSize && !LRUBinaries.empty() && in pruneCache()