Home | History | Annotate | Download | only in Instrumentation

Lines Matching refs:SizeInBytes

421     uint64_t SizeInBytes =
423 return SizeInBytes;
1343 uint64_t SizeInBytes = DL.getTypeAllocSize(Ty);
1346 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
1348 MinRZ, std::min(kMaxGlobalRedzone, (SizeInBytes / MinRZ / 4) * MinRZ));
1351 if (SizeInBytes % MinRZ) RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1352 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
1389 ConstantInt::get(IntptrTy, SizeInBytes),
1390 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),