Lines Matching refs:nfields
3142 int nfields = 0; in attach_fields_to_type() local
3153 nfields++; in attach_fields_to_type()
3164 TYPE_NFIELDS (type) = nfields; in attach_fields_to_type()
3166 TYPE_ALLOC (type, sizeof (struct field) * nfields); in attach_fields_to_type()
3167 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields); in attach_fields_to_type()
3174 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields)); in attach_fields_to_type()
3175 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields); in attach_fields_to_type()
3178 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields)); in attach_fields_to_type()
3179 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields); in attach_fields_to_type()
3182 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields)); in attach_fields_to_type()
3183 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields); in attach_fields_to_type()
3190 while (nfields-- > 0) in attach_fields_to_type()
3192 TYPE_FIELD (type, nfields) = fip->list->field; in attach_fields_to_type()
3196 SET_TYPE_FIELD_PRIVATE (type, nfields); in attach_fields_to_type()
3200 SET_TYPE_FIELD_PROTECTED (type, nfields); in attach_fields_to_type()
3204 SET_TYPE_FIELD_IGNORE (type, nfields); in attach_fields_to_type()