Searched refs:findNextInUse (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.1-release/contrib/llvm/include/llvm/CodeGen/PBQP/
H A DGraph.h159 this->nodeId = findNextInUse(nodeId); // Move to the first in-use nodeId
164 NodeItr& operator++() { nodeId = findNextInUse(++nodeId); return *this; }
168 NodeId findNextInUse(NodeId n) const { function in class:PBQP::Graph::NodeItr
185 this->edgeId = findNextInUse(edgeId); // Move to the first in-use edgeId
190 EdgeItr& operator++() { edgeId = findNextInUse(++edgeId); return *this; }
194 EdgeId findNextInUse(EdgeId n) const { function in class:PBQP::Graph::EdgeItr

Completed in 88 milliseconds