• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/

Lines Matching refs:nt

4739   struct ieee_name_type *nt;
4741 for (nt = h->types; nt != NULL; nt = nt->next)
4746 if (nt->kind == DEBUG_KIND_ILLEGAL)
4774 || ! ieee_write_id (info, nt->type.name)
4776 || ! ieee_write_number (info, nt->type.indx)
4784 switch (nt->kind)
5833 struct ieee_name_type *nt, *ntlook;
5860 nt = NULL;
5864 nt = ntlook;
5874 if (nt != NULL)
5876 assert (localp == nt->type.localp);
5877 if (nt->kind == DEBUG_KIND_ILLEGAL && ! localp)
5886 nt = (struct ieee_name_type *) xmalloc (sizeof *nt);
5887 memset (nt, 0, sizeof *nt);
5888 nt->id = id;
5889 nt->type.name = h->root.string;
5890 nt->next = h->types;
5891 h->types = nt;
5892 nt->type.indx = info->type_indx;
5896 nt->kind = DEBUG_KIND_ILLEGAL;
5899 || ! ieee_define_named_type (info, tag, nt->type.indx, size, TRUE,
5909 /* We never want nt->type.name to be NULL. We want the rest of
5912 hold = nt->type.name;
5913 nt->type = info->type_stack->type;
5914 nt->type.name = hold;
6479 struct ieee_name_type *nt;
6491 nt = h->types;
6492 if (! ieee_push_type (info, nt->type.indx, nt->type.size,
6493 nt->type.unsignedp, nt->type.localp))
6497 info->type_stack->type = nt->type;
6513 struct ieee_name_type *nt;
6553 for (nt = h->types; nt != NULL; nt = nt->next)
6555 if (nt->id == id)
6557 if (! ieee_push_type (info, nt->type.indx, nt->type.size,
6558 nt->type.unsignedp, nt->type.localp))
6561 info->type_stack->type = nt->type;
6565 if (! nt->type.localp)
6573 nt = (struct ieee_name_type *) xmalloc (sizeof *nt);
6574 memset (nt, 0, sizeof *nt);
6576 nt->id = id;
6577 nt->type.name = h->root.string;
6578 nt->type.indx = info->type_indx;
6579 nt->type.localp = localp;
6581 nt->kind = kind;
6583 nt->next = h->types;
6584 h->types = nt;
6586 if (! ieee_push_type (info, nt->type.indx, 0, FALSE, localp))
6605 struct ieee_name_type *nt;
6773 for (nt = h->types; nt != NULL; nt = nt->next)
6775 if (nt->id == indx)
6779 if (! nt->type.localp)
6794 nt = (struct ieee_name_type *) xmalloc (sizeof *nt);
6795 memset (nt, 0, sizeof *nt);
6796 nt->id = indx;
6797 nt->type = type;
6798 nt->type.name = name;
6799 nt->type.localp = localp;
6800 nt->kind = DEBUG_KIND_ILLEGAL;
6802 nt->next = h->types;
6803 h->types = nt;