Searched defs:attallocs (Results 1 - 2 of 2) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dparser.h279 int *attallocs; /* which attribute were allocated */ member in struct:_xmlParserCtxt
/vbox/src/libs/libxml2-2.6.31/
H A Dparser.c1297 int *attallocs; local
1306 attallocs = (int *) xmlMalloc((maxatts / 5) * sizeof(int));
1307 if (attallocs == NULL) goto mem_error;
1308 ctxt->attallocs = attallocs;
1316 attallocs = (int *) xmlRealloc((void *) ctxt->attallocs,
1318 if (attallocs == NULL) goto mem_error;
1319 ctxt->attallocs = attallocs;
[all...]

Completed in 55 milliseconds