Home | History | Annotate | Download | only in config

Lines Matching defs:where

2773       /* Special case where the bitmask of the bclr/brclr
2867 /* These will be incomplete where multiple variants exist. */
4337 char *where;
4356 where = fixP->fx_frag->fr_literal + fixP->fx_where;
4361 bfd_putb32 ((bfd_vma) value, (unsigned char *) where);
4366 bfd_putb16 ((bfd_vma) (value & 0x0ffff), (unsigned char *) where);
4367 ((bfd_byte*) where)[2] = ((value >> 16) & 0x0ff);
4373 bfd_putb16 ((bfd_vma) value, (unsigned char *) where);
4390 ((bfd_byte *) where)[0] = (bfd_byte) value;
4394 ((bfd_byte *) where)[0] = (bfd_byte) value;
4404 ((bfd_byte *) where)[0] |= (bfd_byte) ((value >>9) & 0x01);
4405 ((bfd_byte *) where)[1] = (bfd_byte) ((value>>1) & 0xff);
4413 ((bfd_byte *) where)[0] |= (bfd_byte) ((value >>9) & 0x03);
4414 ((bfd_byte *) where)[1] = (bfd_byte) ((value>>1) & 0xff);
4427 if (where[0] & 0x8)
4432 where[0] = where[0] | (value & 0x07);
4441 where[0] |= value;
4443 where[0] |= (0x10 | (16 + value));
4453 where[1] = value;
4455 where[1] = (256 + value);
4466 where[0] = (value >> 8);
4467 where[1] = (value & 0xff);