Lines Matching refs:newimm
11648 unsigned int newimm; in md_apply_fix() local
11696 newimm = encode_arm_immediate (value); in md_apply_fix()
11701 if (newimm == (unsigned int) FAIL in md_apply_fix()
11702 && (newimm = negate_data_op (&temp, value)) == (unsigned int) FAIL) in md_apply_fix()
11710 newimm |= (temp & 0xfffff000); in md_apply_fix()
11711 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE); in md_apply_fix()
11719 newimm = encode_arm_immediate (value); in md_apply_fix()
11724 if (newimm == (unsigned int) FAIL in md_apply_fix()
11725 && (newimm = negate_data_op (& temp, value)) == (unsigned int) FAIL) in md_apply_fix()
11729 newimm = validate_immediate_twopart (value, & highpart); in md_apply_fix()
11733 if (newimm != (unsigned int) FAIL) in md_apply_fix()
11736 else if ((newimm = validate_immediate_twopart (- value, & highpart)) != (unsigned int) FAIL) in md_apply_fix()
11755 newimm |= (temp & 0xfffff000); in md_apply_fix()
11756 md_number_to_chars (buf, (valueT) newimm, INSN_SIZE); in md_apply_fix()
11986 newimm = encode_thumb32_immediate (value); in md_apply_fix()
11987 if (newimm == (unsigned int) FAIL) in md_apply_fix()
11988 newimm = thumb32_negate_data_op (&newval, value); in md_apply_fix()
11999 newimm = (unsigned int) FAIL; in md_apply_fix()
12001 newimm = value; in md_apply_fix()
12004 if (newimm == (unsigned int)FAIL) in md_apply_fix()
12012 newval |= (newimm & 0x800) << 15; in md_apply_fix()
12013 newval |= (newimm & 0x700) << 4; in md_apply_fix()
12014 newval |= (newimm & 0x0ff); in md_apply_fix()