Searched refs:TOHEX (Results 1 – 3 of 3) sorted by relevance
| /freebsd-9-stable/contrib/binutils/bfd/ |
| D | ihex.c | 725 #define TOHEX(buf, v) \ in ihex_write_record() macro 729 TOHEX (buf + 1, count); in ihex_write_record() 730 TOHEX (buf + 3, (addr >> 8) & 0xff); in ihex_write_record() 731 TOHEX (buf + 5, addr & 0xff); in ihex_write_record() 732 TOHEX (buf + 7, type); in ihex_write_record() 738 TOHEX (p, *data); in ihex_write_record() 742 TOHEX (p, (- chksum) & 0xff); in ihex_write_record()
|
| D | srec.c | 117 #define TOHEX(d, x, ch) \ macro 907 TOHEX (dst, (address >> 24), check_sum); in srec_write_record() 911 TOHEX (dst, (address >> 16), check_sum); in srec_write_record() 916 TOHEX (dst, (address >> 8), check_sum); in srec_write_record() 918 TOHEX (dst, (address), check_sum); in srec_write_record() 925 TOHEX (dst, *src, check_sum); in srec_write_record() 930 TOHEX (length, (dst - length) / 2, check_sum); in srec_write_record() 933 TOHEX (dst, check_sum, check_sum); in srec_write_record()
|
| D | tekhex.c | 93 #define TOHEX(d, x) \ macro 735 TOHEX (front + 1, end - start + 5); in out() 744 TOHEX (front + 4, sum); in out() 790 TOHEX (dst, d->chunk_data[addr + low]); in tekhex_write_object_contents()
|