Home | History | Annotate | Download | only in libxml2

Lines Matching refs:incMax

68     int                incMax; /* size of includes tab */
246 if (ctxt->incMax == 0) {
247 ctxt->incMax = 4;
248 ctxt->incTab = (xmlXIncludeRefPtr *) xmlMalloc(ctxt->incMax *
256 if (ctxt->incNr >= ctxt->incMax) {
257 ctxt->incMax *= 2;
259 ctxt->incMax * sizeof(ctxt->incTab[0]));
297 ret->incMax = 0;
691 newctxt->incMax = ctxt->incMax;
693 newctxt->incTab = (xmlXIncludeRefPtr *) xmlMalloc(newctxt->incMax *