Home
last modified time | relevance | path

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

/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
HDaslcache.c183 UINT32 CacheSize = ASL_STRING_CACHE_SIZE; in UtLocalCacheCalloc() local
186 if (Length > CacheSize) in UtLocalCacheCalloc()
188 CacheSize = Length; in UtLocalCacheCalloc()
192 Cache = UtLocalCalloc (sizeof (Cache->Next) + CacheSize); in UtLocalCacheCalloc()
212 Cache = UtLocalCalloc (sizeof (Cache->Next) + CacheSize); in UtLocalCacheCalloc()
222 AslGbl_StringCacheLast = AslGbl_StringCacheNext + CacheSize; in UtLocalCacheCalloc()
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
HDquarantine.h176 void init(uptr Size, uptr CacheSize) NO_THREAD_SAFETY_ANALYSIS { in init() argument
183 CHECK((Size == 0 && CacheSize == 0) || CacheSize != 0); in init()
187 atomic_store_relaxed(&MaxCacheSize, CacheSize); in init()
267 const uptr CacheSize = Cache.getSize(); in recycle() local
269 DCHECK_GE(CacheSize, OverheadSize); in recycle()
274 if (CacheSize > OverheadSize && in recycle()
276 CacheSize * OverheadThresholdPercents) { in recycle()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
HDCodeLayout.h66 unsigned CacheSize = 2048; member
/freebsd-13-stable/contrib/libarchive/libarchive/
HDarchive_ppmd7_private.h90 UInt64 CacheSize; member
HDarchive_ppmd7.c981 p->CacheSize = 1; in Ppmd7z_RangeEnc_Init()
994 while(--p->CacheSize != 0); in RangeEnc_ShiftLow()
997 p->CacheSize++; in RangeEnc_ShiftLow()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
HDSymbolize.cpp285 CacheSize = 0; in flush()
553 CacheSize += CachedBin.size(); in getOrCreateObject()
792 while (CacheSize > Opts.MaxCacheSize && !LRUBinaries.empty() && in pruneCache()
795 CacheSize -= Bin.size(); in pruneCache()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
HDCodeLayout.cpp122 static cl::opt<unsigned> CacheSize("cdsort-cache-size", cl::ReallyHidden, variable
1273 double PageSamples = ChainDensity * Config.CacheSize; in freqBasedLocalityGain()
1482 if (CacheSize.getNumOccurrences() > 0) in computeCacheDirectedLayout()
1483 Config.CacheSize = CacheSize; in computeCacheDirectedLayout()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
HDSymbolize.h217 size_t CacheSize = 0; variable
/freebsd-13-stable/sys/contrib/dev/acpica/common/
HDdmtbinfo1.c1171 … {ACPI_DMT_UINT64, ACPI_HMAT2_OFFSET (CacheSize), "Memory Side Cache Size", 0},
/freebsd-13-stable/sys/contrib/dev/acpica/include/
HDactbl1.h1868 UINT64 CacheSize; member
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGExpr.cpp847 const int CacheSize = 128; in EmitTypeCheck() local
848 llvm::Type *HashTable = llvm::ArrayType::get(IntPtrTy, CacheSize); in EmitTypeCheck()
853 CacheSize-1)); in EmitTypeCheck()