Searched refs:fast1 (Results 1 – 3 of 3) sorted by relevance
165 ListEntry fast1(m_head); in HasLoop() local170 fast1.SetEntry(fast2.next()); in HasLoop()171 fast2.SetEntry(fast1.next()); in HasLoop()172 if (fast1.value() == slow_value || fast2.value() == slow_value) in HasLoop()
39 fast1 = self.next43 fast1 = self.next_node(fast2)44 fast2 = self.next_node(fast1)45 if self.value(fast1) == slow_value or self.value(fast2) == slow_value:
231 fast1 = stdlist_entry(self.head)235 fast1 = fast2.next236 fast2 = fast1.next237 if fast1.value == slow_value or fast2.value == slow_value: