Searched refs:attallocs (Results 1 – 4 of 4) sorted by relevance
282 int *attallocs; /* which attribute were allocated */ member
1804 if (ctxt->attallocs != NULL) xmlFree(ctxt->attallocs); in xmlFreeParserCtxt()
1589 int *attallocs; in xmlCtxtGrowAttrs() local1598 attallocs = (int *) xmlMalloc((maxatts / 5) * sizeof(int)); in xmlCtxtGrowAttrs()1599 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()1600 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()1608 attallocs = (int *) xmlRealloc((void *) ctxt->attallocs, in xmlCtxtGrowAttrs()1610 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()1611 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()9073 ctxt->attallocs[nratts++] = alloc; in xmlParseStartTag2()9260 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()9272 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()
468 int *attallocs; /* which attribute were allocated */