Home | History | Annotate | Download | only in Instrumentation

Lines Matching defs:SizeInBytes

399     uint64_t SizeInBytes =
401 return SizeInBytes;
1285 uint64_t SizeInBytes = DL.getTypeAllocSize(Ty);
1288 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
1290 MinRZ, std::min(kMaxGlobalRedzone, (SizeInBytes / MinRZ / 4) * MinRZ));
1293 if (SizeInBytes % MinRZ) RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1294 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
1331 ConstantInt::get(IntptrTy, SizeInBytes),
1332 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),