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

/external/llvm/lib/Support/
H A DIntervalMap.cpp25 NodeRef Path::getLeftSibling(unsigned Level) const {
28 return NodeRef();
37 return NodeRef();
40 NodeRef NR = path[l].subtree(path[l].offset - 1);
65 NodeRef NR = subtree(l);
75 NodeRef Path::getRightSibling(unsigned Level) const {
78 return NodeRef();
87 return NodeRef();
90 NodeRef NR = path[l].subtree(path[l].offset + 1);
110 NodeRef N
[all...]
/external/llvm/include/llvm/ADT/
H A DIntervalMap.h190 // Leaves store ((KeyT, KeyT), ValT) pairs, branches use (NodeRef, KeyT).
436 // PointerIntPair used by NodeRef.
466 //--- IntervalMapImpl::NodeRef ---//
478 // A NodeRef doesn't know whether it references a leaf node or a branch node.
482 // of 0 in a NodeRef. The valid range of sizes is 1-64.
486 class NodeRef { class in namespace:llvm::IntervalMapImpl
495 /// NodeRef - Create a null ref.
496 NodeRef() {} function in class:llvm::IntervalMapImpl::NodeRef
501 /// NodeRef - Create a reference to the node p with n elements.
503 NodeRef(Node function in class:llvm::IntervalMapImpl::NodeRef
[all...]

Completed in 892 milliseconds