Lines Matching defs:IntValue
1749 uint64_t IntValue = 0;
1751 IntValue = (IntValue << 8) | CharVal;
1752 Res = MCConstantExpr::create(IntValue, getContext());
3644 int64_t IntValue = MCE->getValue();
3645 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
3647 getStreamer().emitIntValue(IntValue, Size);
3799 APInt IntValue = Asm.getTok().getAPIntVal();
3801 if (!IntValue.isIntN(128))
3803 if (!IntValue.isIntN(64)) {
3804 hi = IntValue.getHiBits(IntValue.getBitWidth() - 64).getZExtValue();
3805 lo = IntValue.getLoBits(64).getZExtValue();
3808 lo = IntValue.getZExtValue();
7146 uint64_t IntValue = MCE->getValue();
7147 if (!isUInt<8>(IntValue) && !isInt<8>(IntValue))
7162 uint64_t IntValue = MCE->getValue();
7163 if (!isPowerOf2_64(IntValue))
7166 Info.AsmRewrites->emplace_back(AOK_Align, IDLoc, 5, Log2_64(IntValue));