Home | History | Annotate | Download | only in bfd

Lines Matching defs:strindex

49 /* Extract a long section name at STRINDEX and copy it to the bfd objstack.
53 extract_long_section_name(bfd *abfd, unsigned long strindex)
61 if ((bfd_size_type)(strindex + 2) >= obj_coff_strings_len (abfd))
63 strings += strindex;
147 uint32_t strindex;
154 if (!decode_base64 (hdr->s_name + 2, SCNNMLEN - 2, &strindex))
157 name = extract_long_section_name (abfd, strindex);
166 long strindex;
171 strindex = strtol (buf, &p, 10);
172 if (*p == '\0' && strindex >= 0)
174 name = extract_long_section_name (abfd, strindex);