Home
last modified time | relevance | path

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

/freebsd-src/sys/contrib/dev/acpica/compiler/
H A Daslcache.c183 UINT32 CacheSize = ASL_STRING_CACHE_SIZE; in UtLocalCacheCalloc() local
191 if (Length > CacheSize) in UtLocalCacheCalloc()
193 CacheSize = Length; in UtLocalCacheCalloc()
197 Cache = UtLocalCalloc (sizeof (Cache->Next) + CacheSize); in UtLocalCacheCalloc()
217 Cache = UtLocalCalloc (sizeof (Cache->Next) + CacheSize); in UtLocalCacheCalloc()
227 AslGbl_StringCacheLast = AslGbl_StringCacheNext + CacheSize; in UtLocalCacheCalloc()
/freebsd-src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dquarantine.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-src/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DCodeLayout.h66 unsigned CacheSize = 2048; member
/freebsd-src/contrib/libarchive/libarchive/
H A Darchive_ppmd7_private.h90 UInt64 CacheSize; member
H A Darchive_ppmd7.c981 p->CacheSize = 1; in Ppmd7z_RangeEnc_Init()
994 while(--p->CacheSize != 0); in RangeEnc_ShiftLow()
997 p->CacheSize++; in RangeEnc_ShiftLow()
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.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 pushEvictor()
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeLayout.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-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DSymbolize.h217 size_t CacheSize = 0; variable
/freebsd-src/sys/contrib/dev/acpica/include/
H A Dactbl1.h2274 UINT64 CacheSize;
2257 UINT64 CacheSize; global() member
/freebsd-src/sys/contrib/dev/acpica/common/
H A Ddmtbinfo1.c1664 {ACPI_DMT_UINT64, ACPI_HMAT2_OFFSET (CacheSize), "Memory Side Cache Size", 0},
/freebsd-src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp847 const int CacheSize = 128; in EmitTypeCheck()
848 llvm::Type *HashTable = llvm::ArrayType::get(IntPtrTy, CacheSize); in EmitTypeCheck()
853 CacheSize-1)); in EmitTypeCheck()
836 const int CacheSize = 128; EmitTypeCheck() local