Lines Matching defs:src
387 // Returns the best path from src to tar using the cost function.
397 static void aStarPath(ConnRef *lineRef, VertInf *src, VertInf *tar,
413 start = src;
417 if (router->RubberBandRouting && (start != src))
480 Node = ANode(src, timestamp++);
644 (!router->RubberBandRouting || (start == src)) &&
751 VertInf *src = lineRef->src();
758 aStarPath(lineRef, src, tar, start);
762 EdgeInf *directEdge = EdgeInf::existingEdge(src, tar);
768 if ((start == src) && directEdge && (directEdge->getDist() > 0) &&
771 tar->pathNext = src;
776 aStarPath(lineRef, src, tar, start);