Lines Matching full:bitwidth
715 template<int BitWidth>
722 return CE->getValue() >= -(1LL << (BitWidth - 1))
723 && CE->getValue() < (1LL << (BitWidth - 1));
726 template<int bitWidth>
733 return CE->getValue() >= 0 && CE->getValue() < (1LL << bitWidth);
911 template<int BitWidth>
917 Inst.addOperand(MCOperand::CreateImm(Val & ((1ULL << BitWidth) - 1)));