Lines Matching defs:nDefaultAtts
384 int nDefaultAtts;
3340 int nDefaultAtts;
3365 nDefaultAtts = elementType->nDefaultAtts;
3371 if (n > INT_MAX - nDefaultAtts) {
3375 if (n + nDefaultAtts > parser->m_attsSize) {
3383 if ((nDefaultAtts > INT_MAX - INIT_ATTS_SIZE)
3384 || (n > INT_MAX - (nDefaultAtts + INIT_ATTS_SIZE))) {
3388 parser->m_attsSize = n + nDefaultAtts + INIT_ATTS_SIZE;
3472 for (j = 0; j < nDefaultAtts; j++) {
3528 for (i = 0; i < nDefaultAtts; i++) {
6530 for (i = 0; i < type->nDefaultAtts; i++)
6536 if (type->nDefaultAtts == type->allocDefaultAtts) {
6573 att = type->defaultAtts + type->nDefaultAtts;
6579 type->nDefaultAtts += 1;
7030 if (oldE->nDefaultAtts) {
7036 if ((size_t)oldE->nDefaultAtts
7042 = ms->malloc_fcn(oldE->nDefaultAtts * sizeof(DEFAULT_ATTRIBUTE));
7050 newE->allocDefaultAtts = newE->nDefaultAtts = oldE->nDefaultAtts;
7054 for (i = 0; i < newE->nDefaultAtts; i++) {