Lines Matching refs:XML_Content
545 static XML_Content *build_model(XML_Parser parser);
2313 XML_FreeContentModel(XML_Parser parser, XML_Content *model) { in XML_FreeContentModel()
5353 XML_Content *content in doProlog()
5354 = (XML_Content *)MALLOC(parser, sizeof(XML_Content)); in doProlog()
5443 XML_Content *model = build_model(parser); in doProlog()
7345 static XML_Content *
7352 XML_Content *ret; in build_model()
7360 if (dtd->scaffCount > (size_t)(-1) / sizeof(XML_Content)) { in build_model()
7367 if (dtd->scaffCount * sizeof(XML_Content) in build_model()
7372 const size_t allocsize = (dtd->scaffCount * sizeof(XML_Content) in build_model()
7375 ret = (XML_Content *)MALLOC(parser, allocsize); in build_model()
7408 XML_Content *dest = ret; /* tree node writing location, moves upwards */ in build_model()
7409 XML_Content *const destLimit = &ret[dtd->scaffCount]; in build_model()
7410 XML_Content *const stackBottom = &ret[dtd->scaffCount]; in build_model()
7411 XML_Content *stackTop = stackBottom; /* i.e. stack is initially empty */ in build_model()