Home
last modified time | relevance | path

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

/freebsd-13.1/sys/contrib/dev/acpica/compiler/
H A 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-13.1/contrib/llvm-project/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()
/freebsd-13.1/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-13.1/sys/contrib/dev/acpica/include/
H A Dactbl1.h1868 UINT64 CacheSize; member
/freebsd-13.1/sys/contrib/dev/acpica/common/
H A Ddmtbinfo1.c1171 … {ACPI_DMT_UINT64, ACPI_HMAT2_OFFSET (CacheSize), "Memory Side Cache Size", 0},
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A 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()