Home
last modified time | relevance | path

Searched refs:newval2 (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-arm.c12152 offsetT newval2; in md_apply_fix() local
12162 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE); in md_apply_fix()
12164 newval2 |= (J1 << 13) | (J2 << 11) | lo; in md_apply_fix()
12166 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE); in md_apply_fix()
12185 offsetT newval2; in md_apply_fix() local
12188 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE); in md_apply_fix()
12190 newval2 |= (value & 0xfff) >> 1; in md_apply_fix()
12192 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE); in md_apply_fix()
12203 offsetT newval2; in md_apply_fix() local
12216 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE); in md_apply_fix()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gas/config/
H A Dtc-arm.c12457 offsetT newval2; local
12461 newval2 = md_chars_to_number (buf + THUMB_SIZE, THUMB_SIZE);
12462 diff = ((newval & 0x7ff) << 12) | ((newval2 & 0x7ff) << 1);
12475 newval2 = (newval2 & 0xf800) | ((value & 0xfff) >> 1);
12481 newval2 = (newval2 + 1) & ~ 1;
12483 md_number_to_chars (buf + THUMB_SIZE, newval2, THUMB_SIZE);