Home
last modified time | relevance | path

Searched refs:GetMaxSize (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h93 uptr GetMaxSize() const { return atomic_load_relaxed(&max_size_); } in GetMaxSize() function
98 if (max_cache_size && size <= GetMaxSize()) { in Put()
115 if (cache_.Size() > GetMaxSize() && recycle_mutex_.TryLock()) in Drain()
131 GetMaxSize() >> 20, GetMaxCacheSize() >> 10); in PrintStats()
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDictionary.h40 static size_t GetMaxSize() { return kMaxSize; } in GetMaxSize() function
H A DFuzzerTracePC.h56 Size = std::min(Size, Word::GetMaxSize()); in Add()
H A DFuzzerTracePC.cpp351 size_t Len = std::min(n, Word::GetMaxSize()); in AddValueForMemcmp()
H A DFuzzerDriver.cpp819 if (U.size() <= Word::GetMaxSize()) in FuzzerDriver()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp444 options->quarantine_size_mb = quarantine.GetMaxSize() >> 20; in GetOptions()