Searched refs:MinRZ (Results 1 – 1 of 1) sorted by relevance
2696 const uint64_t MinRZ = getMinRedzoneSizeForGlobal(); in getRedzoneSizeForGlobal() local2699 if (SizeInBytes <= MinRZ / 2) { in getRedzoneSizeForGlobal()2703 RZ = MinRZ - SizeInBytes; in getRedzoneSizeForGlobal()2706 RZ = std::clamp((SizeInBytes / MinRZ / 4) * MinRZ, MinRZ, kMaxRZ); in getRedzoneSizeForGlobal()2709 if (SizeInBytes % MinRZ) in getRedzoneSizeForGlobal()2710 RZ += MinRZ - (SizeInBytes % MinRZ); in getRedzoneSizeForGlobal()2713 assert((RZ + SizeInBytes) % MinRZ == 0); in getRedzoneSizeForGlobal()