Searched refs:attsSize (Results 1 – 1 of 1) sorted by relevance
648 #define attsSize (parser->m_attsSize) macro760 attsSize = INIT_ATTS_SIZE; in parserCreate()761 atts = (ATTRIBUTE *)MALLOC(attsSize * sizeof(ATTRIBUTE)); in parserCreate()767 attInfo = (XML_AttrInfo*)MALLOC(attsSize * sizeof(XML_AttrInfo)); in parserCreate()2731 n = XmlGetAttributes(enc, attStr, attsSize, atts); in storeAtts()2732 if (n + nDefaultAtts > attsSize) { in storeAtts()2733 int oldAttsSize = attsSize; in storeAtts()2738 attsSize = n + nDefaultAtts + INIT_ATTS_SIZE; in storeAtts()2739 temp = (ATTRIBUTE *)REALLOC((void *)atts, attsSize * sizeof(ATTRIBUTE)); in storeAtts()2744 temp2 = (XML_AttrInfo *)REALLOC((void *)attInfo, attsSize * sizeof(XML_AttrInfo)); in storeAtts()