Searched defs:TreapNode (Results 1 – 2 of 2) sorted by relevance
128 struct TreapNode { struct129 …TreapNode(uint32_t idx, uint32_t num, bool refreshRegionDesc) : l(nullptr), r(nullptr), index_(idx… in TreapNode() function136 ~TreapNode() in ~TreapNode() argument142 inline uint32_t GetIndex() const { return index_; } in GetIndex()144 inline uint32_t GetCount() const { return count_; } in GetCount()146 inline void IncCount(uint32_t num, bool refreshRegionDesc) in IncCount()177 TreapNode* l; argument178 TreapNode* r; argument200 inline TreapNode* Next() in Next() argument
35 TreapNode() : top_(container_), next_(nullptr) {} in TreapNode() function