HomeSort by relevance Sort by last modified time
    Searched refs:vertex_next (Results 1 - 2 of 2) sorted by null

  /system/update_engine/payload_generator/
tarjan.cc 57 Vertex::Index vertex_next = it->first; local
58 if ((*graph)[vertex_next].index == kInvalidIndex) {
59 Tarjan(vertex_next, graph);
61 (*graph)[vertex_next].lowlink);
62 } else if (utils::VectorContainsValue(stack_, vertex_next)) {
64 (*graph)[vertex_next].index);
  /system/core/libmemunreachable/
Tarjan.h 109 Node<T>* vertex_next = it; local
110 if (vertex_next->index == UNDEFINED_INDEX) {
111 Tarjan(vertex_next, graph);
112 vertex->lowlink = std::min(vertex->lowlink, vertex_next->lowlink);
113 } else if (std::find(stack_.begin(), stack_.end(), vertex_next) != stack_.end()) {
114 vertex->lowlink = std::min(vertex->lowlink, vertex_next->index);

Completed in 835 milliseconds