Lines Matching defs:strindex
47 /* Extract a long section name at STRINDEX and copy it to the bfd objstack.
51 extract_long_section_name(bfd *abfd, unsigned long strindex)
59 if ((bfd_size_type)(strindex + 2) >= obj_coff_strings_len (abfd))
61 strings += strindex;
145 uint32_t strindex;
152 if (!decode_base64 (hdr->s_name + 2, SCNNMLEN - 2, &strindex))
155 name = extract_long_section_name (abfd, strindex);
164 long strindex;
169 strindex = strtol (buf, &p, 10);
170 if (*p == '\0' && strindex >= 0)
172 name = extract_long_section_name (abfd, strindex);