Searched refs:attallocs (Results 1 – 4 of 4) sorted by relevance
280 int *attallocs; /* which attribute were allocated */ member
1717 if (ctxt->attallocs != NULL) xmlFree(ctxt->attallocs); in xmlFreeParserCtxt()
1440 int *attallocs; in xmlCtxtGrowAttrs() local1449 attallocs = (int *) xmlMalloc((maxatts / 5) * sizeof(int)); in xmlCtxtGrowAttrs()1450 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()1451 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()1459 attallocs = (int *) xmlRealloc((void *) ctxt->attallocs, in xmlCtxtGrowAttrs()1461 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()1462 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()8851 ctxt->attallocs[nratts++] = alloc; in xmlParseStartTag2()9038 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()9050 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()
468 int *attallocs; /* which attribute were allocated */