Lines Matching refs:me
606 struct score me; /* score for area */ in update_candidate() local
615 assign(&me.a, x0, y0, x0 + w - 1, y0 + h - 1); in update_candidate()
619 get_neighbor_stats(tcm, &me.a, &me.n); in update_candidate()
620 me.neighs = me.n.edge + me.n.busy; in update_candidate()
621 get_nearness_factor(field, &me.a, &me.f); in update_candidate()
632 best->neighs <= me.neighs && in update_candidate()
633 (best->neighs < me.neighs || in update_candidate()
635 best->n.busy < me.n.busy || in update_candidate()
636 (best->n.busy == me.n.busy && in update_candidate()
638 best->f.x + best->f.y > me.f.x + me.f.y))) in update_candidate()
646 memcpy(best, &me, sizeof(me)); in update_candidate()