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

  /external/llvm/include/llvm/ADT/
DepthFirstIterator.h 73 typedef PointerIntPair<NodeType*, 1> PointerIntTy;
77 // if the int in PointerIntTy is 0, the 'next child' to visit is invalid
78 std::vector<std::pair<PointerIntTy, ChildItTy>> VisitStack;
84 std::make_pair(PointerIntTy(Node, 0), GT::child_begin(Node)));
93 std::make_pair(PointerIntTy(Node, 0), GT::child_begin(Node)));
104 std::pair<PointerIntTy, ChildItTy> &Top = VisitStack.back();
119 std::make_pair(PointerIntTy(Next, 0), GT::child_begin(Next)));
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
DepthFirstIterator.h 73 typedef PointerIntPair<NodeType*, 1> PointerIntTy;
77 // if the int in PointerIntTy is 0, the 'next child' to visit is invalid
78 std::vector<std::pair<PointerIntTy, ChildItTy> > VisitStack;
82 VisitStack.push_back(std::make_pair(PointerIntTy(Node, 0),
91 VisitStack.push_back(std::make_pair(PointerIntTy(Node, 0),
103 std::pair<PointerIntTy, ChildItTy> &Top = VisitStack.back();
118 VisitStack.push_back(std::make_pair(PointerIntTy(Next, 0),

Completed in 91 milliseconds