Home
last modified time | relevance | path

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

/freebsd/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/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/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/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 pruneCache()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DSymbolize.h217 size_t CacheSize = 0;
206 size_t CacheSize = 0; global() variable
/freebsd/sys/contrib/dev/acpica/include/
H A Dactbl1.h2274 UINT64 CacheSize; member
/freebsd/sys/contrib/dev/acpica/common/
H A Ddmtbinfo1.c1664 … {ACPI_DMT_UINT64, ACPI_HMAT2_OFFSET (CacheSize), "Memory Side Cache Size", 0},
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp847 const int CacheSize = 128; in EmitTypeCheck() local
848 llvm::Type *HashTable = llvm::ArrayType::get(IntPtrTy, CacheSize); in EmitTypeCheck()
853 CacheSize-1)); in EmitTypeCheck()