Home
last modified time | relevance | path

Searched refs:notationCount (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/expat/xmlwf/
H A Dxmlwf.c403 size_t notationCount = 0; in endDoctypeDecl() local
409 notationCount++; in endDoctypeDecl()
410 if (notationCount == 0) { in endDoctypeDecl()
417 if (notationCount > SIZE_MAX / sizeof(NotationList *)) { in endDoctypeDecl()
422 notations = malloc(notationCount * sizeof(NotationList *)); in endDoctypeDecl()
428 for (p = data->notationListHead, i = 0; i < notationCount; p = p->next, i++) { in endDoctypeDecl()
431 qsort(notations, notationCount, sizeof(NotationList *), notationCmp); in endDoctypeDecl()
439 for (i = 0; i < notationCount; i++) { in endDoctypeDecl()