Home | History | Annotate | Download | only in core

Lines Matching defs:last

423 static SkEdge* sort_edges(SkEdge* list[], int count, SkEdge** last) {
432 *last = list[count - 1];
484 SkEdge headEdge, tailEdge, *last;
485 // this returns the first and last edge after they're sorted into a dlink list
486 SkEdge* edge = sort_edges(list, count, &last);
494 tailEdge.fPrev = last;
497 last->fNext = &tailEdge;
672 SkEdge headEdge, tailEdge, *last;
674 // this returns the first and last edge after they're sorted into a dlink list
675 SkEdge* edge = sort_edges(list, count, &last);
683 tailEdge.fPrev = last;
686 last->fNext = &tailEdge;