Lines Matching refs:lasts
9320 xmlNodePtr *list = NULL, *lasts = NULL; in xmlRelaxNGValidateInterleave() local
9371 lasts = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr)); in xmlRelaxNGValidateInterleave()
9372 if (lasts == NULL) { in xmlRelaxNGValidateInterleave()
9376 memset(lasts, 0, nbgroups * sizeof(xmlNodePtr)); in xmlRelaxNGValidateInterleave()
9438 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave()
9439 lasts[i]->next = cur; in xmlRelaxNGValidateInterleave()
9440 lasts[i] = cur; in xmlRelaxNGValidateInterleave()
9443 lasts[i] = cur; in xmlRelaxNGValidateInterleave()
9465 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave()
9466 last = lasts[i]->next; in xmlRelaxNGValidateInterleave()
9467 lasts[i]->next = NULL; in xmlRelaxNGValidateInterleave()
9558 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave()
9559 lasts[i]->next = last; in xmlRelaxNGValidateInterleave()
9590 xmlFree(lasts); in xmlRelaxNGValidateInterleave()