Searched refs:the_bytes (Results 1 - 5 of 5) sorted by relevance

/openbsd-current/gnu/usr.bin/binutils/gas/config/
H A Dtc-tahoe.c518 byte the_bytes[sizeof (struct relocation_info)];
523 md_number_to_chars (the_bytes, ri.r_address, sizeof (ri.r_address));
526 the_bytes[4] = (ri.r_symbolnum >> 16) & 0x0ff;
527 the_bytes[5] = (ri.r_symbolnum >> 8) & 0x0ff;
528 the_bytes[6] = ri.r_symbolnum & 0x0ff;
529 the_bytes[7] = (((ri.r_extern << 4) & 0x10) | ((ri.r_length << 5) & 0x60) |
532 bcopy (the_bytes, (char *) ri_p, sizeof (struct relocation_info));
513 byte the_bytes[sizeof (struct relocation_info)]; local
H A Dtc-vax.c1549 md_ri_to_chars (the_bytes, ri)
1550 char *the_bytes;
1554 md_number_to_chars (the_bytes, ri.r_address, sizeof (ri.r_address));
1556 the_bytes[6] = (ri.r_symbolnum >> 16) & 0x0ff;
1557 the_bytes[5] = (ri.r_symbolnum >> 8) & 0x0ff;
1558 the_bytes[4] = ri.r_symbolnum & 0x0ff;
1559 the_bytes[7] = (((ri.r_extern << 3) & 0x08) | ((ri.r_length << 1) & 0x06) |
H A Dtc-m68k.c4885 md_ri_to_chars (the_bytes, ri)
4886 char *the_bytes;
4890 md_number_to_chars (the_bytes, ri->r_address, 4);
4892 the_bytes[4] = (ri->r_symbolnum >> 16) & 0x0ff;
4893 the_bytes[5] = (ri->r_symbolnum >> 8) & 0x0ff;
4894 the_bytes[6] = ri->r_symbolnum & 0x0ff;
4895 the_bytes[7] = (((ri->r_pcrel << 7) & 0x80) | ((ri->r_length << 5) & 0x60) |
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-vax.c669 md_ri_to_chars (char *the_bytes, struct reloc_info_generic ri)
672 md_number_to_chars (the_bytes, ri.r_address, sizeof (ri.r_address));
674 the_bytes[6] = (ri.r_symbolnum >> 16) & 0x0ff;
675 the_bytes[5] = (ri.r_symbolnum >> 8) & 0x0ff;
676 the_bytes[4] = ri.r_symbolnum & 0x0ff;
677 the_bytes[7] = (((ri.r_extern << 3) & 0x08) | ((ri.r_length << 1) & 0x06)
664 md_ri_to_chars(char *the_bytes, struct reloc_info_generic ri) argument
H A Dtc-m68k.c4989 md_ri_to_chars (char *the_bytes, struct reloc_info_generic *ri)
4992 md_number_to_chars (the_bytes, ri->r_address, 4);
4994 the_bytes[4] = (ri->r_symbolnum >> 16) & 0x0ff;
4995 the_bytes[5] = (ri->r_symbolnum >> 8) & 0x0ff;
4996 the_bytes[6] = ri->r_symbolnum & 0x0ff;
4997 the_bytes[7] = (((ri->r_pcrel << 7) & 0x80)
4986 md_ri_to_chars(char *the_bytes, struct reloc_info_generic *ri) argument

Completed in 277 milliseconds