• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:dst

712 writevalue (char **dst, bfd_vma value)  in writevalue()  argument
714 char *p = *dst; in writevalue()
729 *dst = p; in writevalue()
736 *dst = p; in writevalue()
740 writesym (char **dst, const char *sym) in writesym() argument
742 char *p = *dst; in writesym()
765 *dst = p; in writesym()
818 char *dst = buffer; in tekhex_write_object_contents() local
820 writevalue (&dst, addr + d->vma); in tekhex_write_object_contents()
823 TOHEX (dst, d->chunk_data[addr + low]); in tekhex_write_object_contents()
824 dst += 2; in tekhex_write_object_contents()
826 out (abfd, '6', buffer, dst); in tekhex_write_object_contents()
834 char *dst = buffer; in tekhex_write_object_contents() local
836 writesym (&dst, s->name); in tekhex_write_object_contents()
837 *dst++ = '1'; in tekhex_write_object_contents()
838 writevalue (&dst, s->vma); in tekhex_write_object_contents()
839 writevalue (&dst, s->vma + s->size); in tekhex_write_object_contents()
840 out (abfd, '3', buffer, dst); in tekhex_write_object_contents()
854 char *dst = buffer; in tekhex_write_object_contents() local
856 writesym (&dst, sym->section->name); in tekhex_write_object_contents()
861 *dst++ = '2'; in tekhex_write_object_contents()
864 *dst++ = '6'; in tekhex_write_object_contents()
869 *dst++ = '4'; in tekhex_write_object_contents()
874 *dst++ = '8'; in tekhex_write_object_contents()
877 *dst++ = '3'; in tekhex_write_object_contents()
880 *dst++ = '7'; in tekhex_write_object_contents()
888 writesym (&dst, sym->name); in tekhex_write_object_contents()
889 writevalue (&dst, sym->value + sym->section->vma); in tekhex_write_object_contents()
890 out (abfd, '3', buffer, dst); in tekhex_write_object_contents()