Lines Matching refs:lasts
9327 xmlNodePtr *list = NULL, *lasts = NULL; in xmlRelaxNGValidateInterleave() local
9378 lasts = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr)); in xmlRelaxNGValidateInterleave()
9379 if (lasts == NULL) { in xmlRelaxNGValidateInterleave()
9383 memset(lasts, 0, nbgroups * sizeof(xmlNodePtr)); in xmlRelaxNGValidateInterleave()
9445 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave()
9446 lasts[i]->next = cur; in xmlRelaxNGValidateInterleave()
9447 lasts[i] = cur; in xmlRelaxNGValidateInterleave()
9450 lasts[i] = cur; in xmlRelaxNGValidateInterleave()
9472 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave()
9473 last = lasts[i]->next; in xmlRelaxNGValidateInterleave()
9474 lasts[i]->next = NULL; in xmlRelaxNGValidateInterleave()
9575 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave()
9576 lasts[i]->next = last; in xmlRelaxNGValidateInterleave()
9607 xmlFree(lasts); in xmlRelaxNGValidateInterleave()