Lines Matching defs:SrcSize
1243 unsigned SrcSize = A->getType()->getScalarSizeInBits();
1247 // SrcSize < DstSize: zext(a & mask)
1248 // SrcSize == DstSize: a & mask
1249 // SrcSize > DstSize: trunc(a) & mask
1250 if (SrcSize < DstSize) {
1251 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
1257 if (SrcSize == DstSize) {
1258 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
1262 if (SrcSize > DstSize) {
1712 int SrcSize = (int)SrcTy->getScalarSizeInBits() - IsSigned;
1717 if (SrcSize <= DestNumSigBits)