Home
last modified time | relevance | path

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

/dports/devel/clixon/clixon-4.8.0/lib/src/
H A Dclixon_xml.c178 int x_childvec_max;/* Length of allocated vector */ member
261 sz += x->x_childvec_max*sizeof(struct xml*); in xml_stats_one()
313 if (x->x_childvec_max)
950 if (xp->x_childvec_len > xp->x_childvec_max){ in xml_child_append()
952 xp->x_childvec_max = xp->x_childvec_max?2*xp->x_childvec_max:start; in xml_child_append()
954 xp->x_childvec_max += XML_CHILDVEC_SIZE_THRESHOLD; in xml_child_append()
955 xp->x_childvec = realloc(xp->x_childvec, xp->x_childvec_max*sizeof(cxobj*)); in xml_child_append()
980 if (xp->x_childvec_len > xp->x_childvec_max){ in xml_child_insert_pos()
982 xp->x_childvec_max = xp->x_childvec_max?2*xp->x_childvec_max:XML_CHILDVEC_SIZE_START; in xml_child_insert_pos()
984 xp->x_childvec_max += XML_CHILDVEC_SIZE_THRESHOLD; in xml_child_insert_pos()
[all …]