Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/contrib/dev/acpica/compiler/
Daslcache.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-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
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()
/freebsd-12-stable/contrib/libarchive/libarchive/
Darchive_ppmd7_private.h90 UInt64 CacheSize; member
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-12-stable/sys/contrib/dev/acpica/common/
Ddmtbinfo1.c1171 … {ACPI_DMT_UINT64, ACPI_HMAT2_OFFSET (CacheSize), "Memory Side Cache Size", 0},
/freebsd-12-stable/sys/contrib/dev/acpica/include/
Dactbl1.h1872 UINT64 CacheSize; member
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGExpr.cpp845 const int CacheSize = 128; in EmitTypeCheck() local
846 llvm::Type *HashTable = llvm::ArrayType::get(IntPtrTy, CacheSize); in EmitTypeCheck()
851 CacheSize-1)); in EmitTypeCheck()