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

  /external/llvm/lib/Support/
IntervalMap.cpp 25 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 NR = subtree(l)
    [all...]
  /external/llvm/include/llvm/ADT/
IntervalMap.h 191 // Leaves store ((KeyT, KeyT), ValT) pairs, branches use (NodeRef, KeyT).
437 // PointerIntPair used by NodeRef.
467 //--- IntervalMapImpl::NodeRef ---//
479 // A NodeRef doesn't know whether it references a leaf node or a branch node.
483 // of 0 in a NodeRef. The valid range of sizes is 1-64.
487 class NodeRef {
496 /// NodeRef - Create a null ref.
497 NodeRef() {}
502 /// NodeRef - Create a reference to the node p with n elements.
504 NodeRef(NodeT *p, unsigned n) : pip(p, n - 1)
    [all...]

Completed in 104 milliseconds