Lines Matching refs:dst

705 writevalue (char **dst, bfd_vma value)  in writevalue()  argument
707 char *p = *dst; in writevalue()
722 *dst = p; in writevalue()
729 *dst = p; in writevalue()
733 writesym (char **dst, const char *sym) in writesym() argument
735 char *p = *dst; in writesym()
758 *dst = p; in writesym()
811 char *dst = buffer; in tekhex_write_object_contents() local
813 writevalue (&dst, addr + d->vma); in tekhex_write_object_contents()
816 TOHEX (dst, d->chunk_data[addr + low]); in tekhex_write_object_contents()
817 dst += 2; in tekhex_write_object_contents()
819 out (abfd, '6', buffer, dst); in tekhex_write_object_contents()
827 char *dst = buffer; in tekhex_write_object_contents() local
829 writesym (&dst, s->name); in tekhex_write_object_contents()
830 *dst++ = '1'; in tekhex_write_object_contents()
831 writevalue (&dst, s->vma); in tekhex_write_object_contents()
832 writevalue (&dst, s->vma + s->size); in tekhex_write_object_contents()
833 out (abfd, '3', buffer, dst); in tekhex_write_object_contents()
847 char *dst = buffer; in tekhex_write_object_contents() local
849 writesym (&dst, sym->section->name); in tekhex_write_object_contents()
854 *dst++ = '2'; in tekhex_write_object_contents()
857 *dst++ = '6'; in tekhex_write_object_contents()
862 *dst++ = '4'; in tekhex_write_object_contents()
867 *dst++ = '8'; in tekhex_write_object_contents()
870 *dst++ = '3'; in tekhex_write_object_contents()
873 *dst++ = '7'; in tekhex_write_object_contents()
881 writesym (&dst, sym->name); in tekhex_write_object_contents()
882 writevalue (&dst, sym->value + sym->section->vma); in tekhex_write_object_contents()
883 out (abfd, '3', buffer, dst); in tekhex_write_object_contents()