Home | History | Annotate | Download | only in libxml2

Lines Matching defs:defMax

229     int defMax;                 /* number of defines aloocated */
894 if (ctxt->defMax == 0) {
895 ctxt->defMax = 16;
898 xmlMalloc(ctxt->defMax * sizeof(xmlRelaxNGDefinePtr));
903 } else if (ctxt->defMax <= ctxt->defNr) {
906 ctxt->defMax *= 2;
908 ctxt->defMax *