Searched refs:MinRZ (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1064 uint64_t MinRZ = MinRedzoneSizeForGlobal(); local
1065 // MinRZ <= RZ <= kMaxGlobalRedzone
1067 uint64_t RZ = std::max(MinRZ,
1069 (SizeInBytes / MinRZ / 4) * MinRZ));
1071 // Round up to MinRZ
1072 if (SizeInBytes % MinRZ)
1073 RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1074 assert(((RightRedzoneSize + SizeInBytes) % MinRZ)
[all...]

Completed in 133 milliseconds