Lines Matching refs:allocDefaultAtts
362 int allocDefaultAtts; member
6396 if (type->nDefaultAtts == type->allocDefaultAtts) { in defineAttribute()
6397 if (type->allocDefaultAtts == 0) { in defineAttribute()
6398 type->allocDefaultAtts = 8; in defineAttribute()
6400 parser, type->allocDefaultAtts * sizeof(DEFAULT_ATTRIBUTE)); in defineAttribute()
6402 type->allocDefaultAtts = 0; in defineAttribute()
6409 if (type->allocDefaultAtts > INT_MAX / 2) { in defineAttribute()
6413 int count = type->allocDefaultAtts * 2; in defineAttribute()
6429 type->allocDefaultAtts = count; in defineAttribute()
6752 if (e->allocDefaultAtts != 0) in dtdReset()
6793 if (e->allocDefaultAtts != 0) in dtdDestroy()
6896 newE->allocDefaultAtts = newE->nDefaultAtts = oldE->nDefaultAtts; in dtdCopy()