Home | History | Annotate | Download | only in libxml2

Lines Matching refs:nsMax

1530     if ((ctxt->nsMax == 0) || (ctxt->nsTab == NULL)) {
1531 ctxt->nsMax = 10;
1534 xmlMalloc(ctxt->nsMax * sizeof(xmlChar *));
1537 ctxt->nsMax = 0;
1540 } else if (ctxt->nsNr >= ctxt->nsMax) {
1542 ctxt->nsMax *= 2;
1544 ctxt->nsMax * sizeof(ctxt->nsTab[0]));
1547 ctxt->nsMax /= 2;