Lines Matching refs:lasts
9292 xmlNodePtr *list = NULL, *lasts = NULL; in xmlRelaxNGValidateInterleave() local
9343 lasts = (xmlNodePtr *) xmlMalloc(nbgroups * sizeof(xmlNodePtr)); in xmlRelaxNGValidateInterleave()
9344 if (lasts == NULL) { in xmlRelaxNGValidateInterleave()
9348 memset(lasts, 0, nbgroups * sizeof(xmlNodePtr)); in xmlRelaxNGValidateInterleave()
9410 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave()
9411 lasts[i]->next = cur; in xmlRelaxNGValidateInterleave()
9412 lasts[i] = cur; in xmlRelaxNGValidateInterleave()
9415 lasts[i] = cur; in xmlRelaxNGValidateInterleave()
9437 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave()
9438 last = lasts[i]->next; in xmlRelaxNGValidateInterleave()
9439 lasts[i]->next = NULL; in xmlRelaxNGValidateInterleave()
9530 if (lasts[i] != NULL) { in xmlRelaxNGValidateInterleave()
9531 lasts[i]->next = last; in xmlRelaxNGValidateInterleave()
9562 xmlFree(lasts); in xmlRelaxNGValidateInterleave()