Lines Matching defs:where

3427   char *where;
3475 where = fixP->fx_frag->fr_literal + fixP->fx_where;
3478 insn = bfd_getl32 ((unsigned char *) where);
3480 insn = bfd_getl16 ((unsigned char *) where);
3493 bfd_putl32 ((bfd_vma) insn, (unsigned char *) where);
3495 bfd_putl16 ((bfd_vma) insn, (unsigned char *) where);
3525 where = fixP->fx_frag->fr_literal + fixP->fx_where;
3534 /* The variable "where" currently points at the exact point inside
3535 the insn where we need to insert the value. But we need to
3536 extract the entire insn so we probably need to move "where"
3540 where -= 2;
3542 where -= 3;
3544 insn = bfd_getl32 ((unsigned char *) where);
3551 bfd_putl32 ((bfd_vma) insn, (unsigned char *) where);
3559 bfd_putl32 (value & 0xfffffffe, (unsigned char *) where);
3563 bfd_putl32 (value, (unsigned char *) where);
3568 | (bfd_getl32 (where) & ~((0x7f << 4) | (0xffff << 16))),
3569 (unsigned char *) where);
3580 bfd_putl16 (value & 0xffff, (unsigned char *) where);
3584 *where = value & 0xff;
3589 | (bfd_getl16 (where) & ~((0x1f0 << 7) | (0x0e << 3))), where);
3594 | (bfd_getl32 (where) & ~((0x10000 >> (16 - 4)) | (0xfffe << 16))), where);
3598 bfd_putl16 ((-value & 0xfffe) | (bfd_getl16 (where + 2) & 0x0001),
3599 (unsigned char *) (where + 2));
3604 | (bfd_getl32 (where) & ~((0xfffe << 16) | (0x3f0000 >> 16))), where);
3611 bfd_putl16 (value & 0xfffe, (unsigned char *) where);
3620 | (bfd_getl32 (where) & ~0xfffe0020), where);
3624 *where = (*where & ~0x7e) | ((value >> 1) & 0x7e);
3628 *where = (*where & ~0x7f) | ((value >> 1) & 0x7f);
3632 *where = (*where & ~0x7f) | (value & 0x7f);
3636 *where = (*where & ~0xf) | ((value >> 1) & 0xf);
3640 *where = (*where & ~0xf) | (value & 0xf);
3644 *where = (*where & ~0x3f) | (value & 0x3f);
3677 int where,
3693 fix_new_exp (frag, where, size, exp, 0, r);
3695 fix_new (frag, where, size, NULL, 0, 0, r);