Searched refs:attallocs (Results 1 – 3 of 3) sorted by relevance
1191 int *attallocs; in xmlCtxtGrowAttrs() local1200 attallocs = (int *) xmlMalloc((maxatts / 5) * sizeof(int)); in xmlCtxtGrowAttrs()1201 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()1202 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()1210 attallocs = (int *) xmlRealloc((void *) ctxt->attallocs, in xmlCtxtGrowAttrs()1212 if (attallocs == NULL) goto mem_error; in xmlCtxtGrowAttrs()1213 ctxt->attallocs = attallocs; in xmlCtxtGrowAttrs()8091 ctxt->attallocs[nratts++] = alloc; in xmlParseStartTag2()8272 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()8284 if ((ctxt->attallocs[j] != 0) && (atts[i] != NULL)) in xmlParseStartTag2()
1715 if (ctxt->attallocs != NULL) xmlFree(ctxt->attallocs); in xmlFreeParserCtxt()
279 int *attallocs; /* which attribute were allocated */ member