Lines Matching refs:where
278 char *where = fixP->fx_frag->fr_literal + fixP->fx_where; in epiphany_apply_fix() local
279 unsigned char *insn = (unsigned char *)where; in epiphany_apply_fix()
291 where[0] = where[0] | ((value & 1) << 7); in epiphany_apply_fix()
292 where[1] = where[1] | ((value & 6) >> 1); in epiphany_apply_fix()
293 where[2] = (value >> 3) & 0xff; in epiphany_apply_fix()
297 where[0] = where[0] | ((value & 1) << 7); in epiphany_apply_fix()
298 where[1] = where[1] | ((value & 6) >> 1); in epiphany_apply_fix()
299 where[2] = (value >> 3) & 0xff; in epiphany_apply_fix()
303 md_number_to_chars (where+1, value>>1, 1); in epiphany_apply_fix()
307 md_number_to_chars (where+1, value>>1, 3); in epiphany_apply_fix()
318 md_number_to_chars (where, value, 3); in epiphany_apply_fix()