Lines Matching refs:where
3410 char *where; in md_apply_fix() local
3458 where = fixP->fx_frag->fr_literal + fixP->fx_where; in md_apply_fix()
3461 insn = bfd_getl32 ((unsigned char *) where); in md_apply_fix()
3463 insn = bfd_getl16 ((unsigned char *) where); in md_apply_fix()
3476 bfd_putl32 ((bfd_vma) insn, (unsigned char *) where); in md_apply_fix()
3478 bfd_putl16 ((bfd_vma) insn, (unsigned char *) where); in md_apply_fix()
3508 where = fixP->fx_frag->fr_literal + fixP->fx_where; in md_apply_fix()
3523 where -= 2; in md_apply_fix()
3525 where -= 3; in md_apply_fix()
3527 insn = bfd_getl32 ((unsigned char *) where); in md_apply_fix()
3534 bfd_putl32 ((bfd_vma) insn, (unsigned char *) where); in md_apply_fix()
3542 bfd_putl32 (value & 0xfffffffe, (unsigned char *) where); in md_apply_fix()
3546 bfd_putl32 (value, (unsigned char *) where); in md_apply_fix()
3551 | (bfd_getl32 (where) & ~((0x7f << 4) | (0xffff << 16))), in md_apply_fix()
3552 (unsigned char *) where); in md_apply_fix()
3563 bfd_putl16 (value & 0xffff, (unsigned char *) where); in md_apply_fix()
3567 *where = value & 0xff; in md_apply_fix()
3572 | (bfd_getl16 (where) & ~((0x1f0 << 7) | (0x0e << 3))), where); in md_apply_fix()
3577 | (bfd_getl32 (where) & ~((0x10000 >> (16 - 4)) | (0xfffe << 16))), where); in md_apply_fix()
3581 bfd_putl16 ((-value & 0xfffe) | (bfd_getl16 (where + 2) & 0x0001), in md_apply_fix()
3582 (unsigned char *) (where + 2)); in md_apply_fix()
3587 | (bfd_getl32 (where) & ~((0xfffe << 16) | (0x3f0000 >> 16))), where); in md_apply_fix()
3594 bfd_putl16 (value & 0xfffe, (unsigned char *) where); in md_apply_fix()
3603 | (bfd_getl32 (where) & ~0xfffe0020), where); in md_apply_fix()
3607 *where = (*where & ~0x7e) | ((value >> 1) & 0x7e); in md_apply_fix()
3611 *where = (*where & ~0x7f) | ((value >> 1) & 0x7f); in md_apply_fix()
3615 *where = (*where & ~0x7f) | (value & 0x7f); in md_apply_fix()
3619 *where = (*where & ~0xf) | ((value >> 1) & 0xf); in md_apply_fix()
3623 *where = (*where & ~0xf) | (value & 0xf); in md_apply_fix()
3627 *where = (*where & ~0x3f) | (value & 0x3f); in md_apply_fix()
3660 int where, in cons_fix_new_v850() argument
3676 fix_new_exp (frag, where, size, exp, 0, r); in cons_fix_new_v850()
3678 fix_new (frag, where, size, NULL, 0, 0, r); in cons_fix_new_v850()