Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/
H A Dquarantine.h175 void init(uptr Size, uptr CacheSize) { in init() argument
182 CHECK((Size == 0 && CacheSize == 0) || CacheSize != 0); in init()
186 atomic_store_relaxed(&MaxCacheSize, CacheSize); in init()
255 const uptr CacheSize = Cache.getSize(); in recycle() local
257 DCHECK_GE(CacheSize, OverheadSize); in recycle()
262 if (CacheSize > OverheadSize && in recycle()
264 CacheSize * OverheadThresholdPercents) { in recycle()
/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/tests/
H A Dquarantine_test.cpp202 scudo::uptr CacheSize = Cache.getSize(); in TEST() local
208 if (!DrainOccurred && Cache.getSize() < CacheSize) in TEST()
210 CacheSize = Cache.getSize(); in TEST()
/llvm-project-15.0.7/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp237 CacheSize = 0; in flush()
555 CacheSize += CachedBin.size(); in getOrCreateObject()
758 while (CacheSize > Opts.MaxCacheSize && !LRUBinaries.empty() && in pruneCache()
761 CacheSize -= Bin.size(); in pruneCache()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/Symbolize/
H A DSymbolize.h205 size_t CacheSize = 0; variable
/llvm-project-15.0.7/openmp/libomptarget/plugins/amdgpu/src/
H A Drtl.cpp564 uint32_t CacheSize[4]; in printDeviceInfo() local
629 hsa_agent_get_info(Agent, HSA_AGENT_INFO_CACHE_SIZE, CacheSize), in printDeviceInfo()
634 if (CacheSize[I]) { in printDeviceInfo()
635 printf(" L%u: \t\t\t\t%u bytes\n", I, CacheSize[I]); in printDeviceInfo()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExpr.cpp842 const int CacheSize = 128; in EmitTypeCheck() local
843 llvm::Type *HashTable = llvm::ArrayType::get(IntPtrTy, CacheSize); in EmitTypeCheck()
848 CacheSize-1)); in EmitTypeCheck()