• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/cxxfilt-11/cxxfilt/bfd/

Lines Matching defs:VDATA

87 #define VDATA(abfd)       (abfd->tdata.versados_data)
157 VDATA (abfd)->alert = 0x12345678;
175 asymbol *n = VDATA (abfd)->symbols + snum;
221 char *n = VDATA (abfd)->strings;
223 strcpy (VDATA (abfd)->strings, name);
224 VDATA (abfd)->strings += strlen (VDATA (abfd)->strings) + 1;
259 int snum = VDATA (abfd)->ref_idx++;
262 VDATA (abfd)->stringlen += strlen (name) + 1;
271 esidx = VDATA (abfd)->es_done++;
290 int snum = VDATA (abfd)->def_idx++;
297 VDATA (abfd)->stringlen += strlen (name) + 1;
303 s = versados_new_symbol (abfd, snum + VDATA (abfd)->nrefs, n,
460 VDATA (abfd)->stringlen = 0;
461 VDATA (abfd)->nrefs = 0;
462 VDATA (abfd)->ndefs = 0;
463 VDATA (abfd)->ref_idx = 0;
464 VDATA (abfd)->def_idx = 0;
465 VDATA (abfd)->pass_2_done = 0;
490 VDATA (abfd)->nrefs = VDATA (abfd)->ref_idx;
491 VDATA (abfd)->ndefs = VDATA (abfd)->def_idx;
492 VDATA (abfd)->ref_idx = 0;
493 VDATA (abfd)->def_idx = 0;
495 abfd->symcount = VDATA (abfd)->nrefs + VDATA (abfd)->ndefs;
519 VDATA (abfd)->stringlen += strlen (esdid->section->name) + 1;
527 VDATA (abfd)->symbols = bfd_alloc (abfd, amt);
529 amt = VDATA (abfd)->stringlen;
530 VDATA (abfd)->strings = bfd_alloc (abfd, amt);
532 if ((VDATA (abfd)->symbols == NULL && abfd->symcount > 0)
533 || (VDATA (abfd)->strings == NULL && VDATA (abfd)->stringlen > 0))
538 for (j = VDATA (abfd)->nrefs + VDATA (abfd)->ndefs, i = 0; i < 16; i++)
545 asymbol *s = VDATA (abfd)->symbols + j;
560 VDATA (abfd)->nsecsyms = nsecs;
562 VDATA (abfd)->ref_idx = 0;
619 if (VDATA (abfd)->pass_2_done)
625 VDATA (abfd)->es_done = ES_BASE;
634 VDATA (abfd)->pass_2_done = 1;
702 for (i = 0, s = VDATA (abfd)->symbols;