Home | History | Annotate | Download | only in src

Lines Matching refs:MaxShift

3476   const SizeT MaxShift = getScalarIntBitWidth(ElmtTy);
3477 assert(Imm < MaxShift);
3480 const IValueT VshlImm = Imm - MaxShift;
3481 const IValueT VshrImm = 2 * MaxShift - Imm;
3482 return ((Shift == ST_Vshl) ? VshlImm : VshrImm) & (2 * MaxShift - 1);