Lines Matching full:that
20 void DependChains::Merge(DependChains* that) in Merge() argument
23 while (size_ > that->size_) { in Merge()
29 auto rhs = that->head_; in Merge()
30 size_t rhsSize = that->size_; in Merge()
44 bool DependChains::Equals(DependChains* that) in Equals() argument
46 if (that == nullptr) { in Equals()
49 if (size_ != that->size_) { in Equals()
53 auto rhs = that->head_; in Equals()
68 DependChains* that = new (chunk_) DependChains(chunk_); in UpdateNode() local
70 that->head_ = node; in UpdateNode()
71 that->size_ = size_ + 1; in UpdateNode()
72 return that; in UpdateNode()