Home
last modified time | relevance | path

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

/openbsd-src/gnu/usr.bin/binutils/gas/config/
H A Dtc-tahoe.c513 byte the_bytes[sizeof (struct relocation_info)]; local
518 md_number_to_chars (the_bytes, ri.r_address, sizeof (ri.r_address));
521 the_bytes[4] = (ri.r_symbolnum >> 16) & 0x0ff;
522 the_bytes[5] = (ri.r_symbolnum >> 8) & 0x0ff;
523 the_bytes[6] = ri.r_symbolnum & 0x0ff;
524 the_bytes[7] = (((ri.r_extern << 4) & 0x10) | ((ri.r_length << 5) & 0x60) |
527 bcopy (the_bytes, (char *) ri_p, sizeof (struct relocation_info));
H A Dtc-vax.c1543 md_ri_to_chars (the_bytes, ri) in md_ri_to_chars() argument
1544 char *the_bytes; in md_ri_to_chars()
1548 md_number_to_chars (the_bytes, ri.r_address, sizeof (ri.r_address));
1550 the_bytes[6] = (ri.r_symbolnum >> 16) & 0x0ff;
1551 the_bytes[5] = (ri.r_symbolnum >> 8) & 0x0ff;
1552 the_bytes[4] = ri.r_symbolnum & 0x0ff;
1553 the_bytes[7] = (((ri.r_extern << 3) & 0x08) | ((ri.r_length << 1) & 0x06) |
H A Dtc-m68k.c4882 md_ri_to_chars (the_bytes, ri) in md_ri_to_chars() argument
4883 char *the_bytes; in md_ri_to_chars()
4887 md_number_to_chars (the_bytes, ri->r_address, 4);
4889 the_bytes[4] = (ri->r_symbolnum >> 16) & 0x0ff;
4890 the_bytes[5] = (ri->r_symbolnum >> 8) & 0x0ff;
4891 the_bytes[6] = ri->r_symbolnum & 0x0ff;
4892 the_bytes[7] = (((ri->r_pcrel << 7) & 0x80) | ((ri->r_length << 5) & 0x60) |
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-vax.c664 md_ri_to_chars (char *the_bytes, struct reloc_info_generic ri) in md_ri_to_chars() argument
667 md_number_to_chars (the_bytes, ri.r_address, sizeof (ri.r_address)); in md_ri_to_chars()
669 the_bytes[6] = (ri.r_symbolnum >> 16) & 0x0ff; in md_ri_to_chars()
670 the_bytes[5] = (ri.r_symbolnum >> 8) & 0x0ff; in md_ri_to_chars()
671 the_bytes[4] = ri.r_symbolnum & 0x0ff; in md_ri_to_chars()
672 the_bytes[7] = (((ri.r_extern << 3) & 0x08) | ((ri.r_length << 1) & 0x06) in md_ri_to_chars()
H A Dtc-m68k.c4986 md_ri_to_chars (char *the_bytes, struct reloc_info_generic *ri) in md_ri_to_chars() argument
4989 md_number_to_chars (the_bytes, ri->r_address, 4); in md_ri_to_chars()
4991 the_bytes[4] = (ri->r_symbolnum >> 16) & 0x0ff; in md_ri_to_chars()
4992 the_bytes[5] = (ri->r_symbolnum >> 8) & 0x0ff; in md_ri_to_chars()
4993 the_bytes[6] = ri->r_symbolnum & 0x0ff; in md_ri_to_chars()
4994 the_bytes[7] = (((ri->r_pcrel << 7) & 0x80) in md_ri_to_chars()