Lines Matching refs:nfields
942 int nfields = 0; in struct_type() local
1071 nfields++; in struct_type()
1084 if (nfields == 0) in struct_type()
1090 TYPE_NFIELDS (type) = nfields; in struct_type()
1092 TYPE_ALLOC (type, sizeof (struct field) * nfields); in struct_type()
1094 for (n = nfields; list; list = list->next) in struct_type()
1660 int nfields = 0; in enum_type() local
1719 nfields++; in enum_type()
1740 if (nfields > 0) in enum_type()
1744 TYPE_NFIELDS (type) = nfields; in enum_type()
1746 obstack_alloc (&objfile->objfile_obstack, sizeof (struct field) * nfields); in enum_type()
1748 for (n = 0; (n < nfields) && (list != NULL); list = list->next) in enum_type()