Lines Matching defs:ardata

713   struct artdata *ardata = bfd_ardata (abfd);
737 ardata->symdef_count = H_GET_32 (abfd, raw_armap) / BSD_SYMDEF_SIZE;
739 if (ardata->symdef_count * BSD_SYMDEF_SIZE >
747 ardata->cache = 0;
750 + ardata->symdef_count * BSD_SYMDEF_SIZE
752 amt = ardata->symdef_count * sizeof (carsym);
753 ardata->symdefs = bfd_alloc (abfd, amt);
754 if (!ardata->symdefs)
757 for (counter = 0, set = ardata->symdefs;
758 counter < ardata->symdef_count;
765 ardata->first_file_filepos = bfd_tell (abfd);
767 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
782 struct artdata *ardata = bfd_ardata (abfd);
838 ardata->symdefs = bfd_zalloc (abfd, carsym_size + stringsize + 1);
839 if (ardata->symdefs == NULL)
841 carsyms = ardata->symdefs;
842 stringbase = ((char *) ardata->symdefs) + carsym_size;
867 ardata->symdef_count = nsymz;
868 ardata->first_file_filepos = bfd_tell (abfd);
870 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;
879 bfd_seek (abfd, ardata->first_file_filepos, SEEK_SET);
886 ardata->first_file_filepos +=
898 bfd_release (abfd, (ardata)->symdefs);
955 struct artdata *ardata = bfd_ardata (abfd);
1003 ardata->symdef_count = H_GET_16 (abfd, raw_armap);
1005 if (ardata->symdef_count * BSD_SYMDEF_SIZE
1013 ardata->cache = 0;
1021 amt = ardata->symdef_count * BSD_SYMDEF_SIZE;
1022 ardata->symdefs = bfd_alloc (abfd, amt);
1023 if (!ardata->symdefs)
1026 for (counter = 0, set = ardata->symdefs;
1027 counter < ardata->symdef_count;
1034 ardata->first_file_filepos = bfd_tell (abfd);
1036 ardata->first_file_filepos += (ardata->first_file_filepos) % 2;