Home
last modified time | relevance | path

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

/freebsd/contrib/expat/lib/
H A Dxmltok_impl.c1512 int nAtts = 0; in PREFIX() local
1520 if (nAtts < attsMax) { \ in PREFIX()
1521 atts[nAtts].name = ptr; \ in PREFIX()
1522 atts[nAtts].normalized = 1; \ in PREFIX()
1542 if (nAtts < attsMax) in PREFIX()
1543 atts[nAtts].valuePtr = ptr + MINBPC(enc); in PREFIX()
1548 if (nAtts < attsMax) in PREFIX()
1549 atts[nAtts].valueEnd = ptr; in PREFIX()
1550 nAtts++; in PREFIX()
1555 if (nAtts < attsMax) in PREFIX()
[all …]
/freebsd/contrib/expat/xmlwf/
H A Dxmlwf.c187 int nAtts; in startElement() local
196 nAtts = (int)((p - atts) >> 1); in startElement()
197 if (nAtts > 1) in startElement()
198 qsort((void *)atts, nAtts, sizeof(XML_Char *) * 2, attcmp); in startElement()
230 int nAtts; in startElementNS() local
252 nAtts = (int)((p - atts) >> 1); in startElementNS()
253 if (nAtts > 1) in startElementNS()
254 qsort((void *)atts, nAtts, sizeof(XML_Char *) * 2, nsattcmp); in startElementNS()