Home | History | Annotate | Download | only in libxml2

Lines Matching refs:nsMax

48     int nsMax;              /* size of the array as allocated */
301 memset(cur->nsTab, 0, cur->nsMax * sizeof(xmlNsPtr));
305 memset(cur->nodeTab, 0, cur->nsMax * sizeof(xmlNodePtr));
331 cur->nsMax = XML_NAMESPACES_DEFAULT;
332 } else if(cur->nsMax == cur->nsCurEnd) {
336 tmpSize = 2 * cur->nsMax;
351 cur->nsMax = tmpSize;