Lines Matching defs:ElemSizeInBits
13684 // - for the SLI case: C1 == ~(Ones(ElemSizeInBits) << C2)
13685 // - for the SRI case: C1 == ~(Ones(ElemSizeInBits) >> C2)
13746 unsigned ElemSizeInBits = VT.getScalarSizeInBits();
13757 C1AsAPInt = C1AsAPInt.zextOrTrunc(ElemSizeInBits);
13760 // Is C1 == ~(Ones(ElemSizeInBits) << C2) or
13761 // C1 == ~(Ones(ElemSizeInBits) >> C2), taking into account
13763 if (C2 > ElemSizeInBits)
13766 APInt RequiredC1 = IsShiftRight ? APInt::getHighBitsSet(ElemSizeInBits, C2)
13767 : APInt::getLowBitsSet(ElemSizeInBits, C2);