Lines Matching refs:nfields
613 int nfields; member
3256 fip->nfields++; in dwarf2_add_field()
3416 int nfields = fip->nfields; in dwarf2_attach_fields_to_type() local
3420 TYPE_NFIELDS (type) = nfields; in dwarf2_attach_fields_to_type()
3422 TYPE_ALLOC (type, sizeof (struct field) * nfields); in dwarf2_attach_fields_to_type()
3423 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields); in dwarf2_attach_fields_to_type()
3430 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields)); in dwarf2_attach_fields_to_type()
3431 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields); in dwarf2_attach_fields_to_type()
3434 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields)); in dwarf2_attach_fields_to_type()
3435 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields); in dwarf2_attach_fields_to_type()
3438 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields)); in dwarf2_attach_fields_to_type()
3439 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields); in dwarf2_attach_fields_to_type()
3459 while (nfields-- > 0) in dwarf2_attach_fields_to_type()
3461 TYPE_FIELD (type, nfields) = fip->fields->field; in dwarf2_attach_fields_to_type()
3465 SET_TYPE_FIELD_PRIVATE (type, nfields); in dwarf2_attach_fields_to_type()
3469 SET_TYPE_FIELD_PROTECTED (type, nfields); in dwarf2_attach_fields_to_type()
3483 if (nfields < fip->nbaseclasses) in dwarf2_attach_fields_to_type()
3489 SET_TYPE_FIELD_VIRTUAL (type, nfields); in dwarf2_attach_fields_to_type()
3814 if (fi.nfields) in read_structure_type()