Home | History | Annotate | Download | only in isccc

Lines Matching refs:rest

134 	isccc_sexpr_t *car, *caar, *rest, *prev;
139 rest = CDR(alist);
140 while (rest != NULL) {
141 INSIST(rest->type == ISCCC_SEXPRTYPE_DOTTEDPAIR);
142 car = CAR(rest);
148 CDR(prev) = CDR(rest);
149 CDR(rest) = NULL;
150 isccc_sexpr_free(&rest);
153 prev = rest;
154 rest = CDR(rest);