Home
last modified time | relevance | path

Searched refs:fast2 (Results 1 – 3 of 3) sorted by relevance

/external/lldb/source/DataFormatters/
DLibCxxList.cpp166 ListEntry fast2(m_head); in HasLoop() local
170 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()
/external/lldb/examples/synthetic/
Dgnu_libstdcpp.py40 fast2 = self.next
43 fast1 = self.next_node(fast2)
44 fast2 = self.next_node(fast1)
45 if self.value(fast1) == slow_value or self.value(fast2) == slow_value:
Dlibcxx.py232 fast2 = stdlist_entry(self.head)
235 fast1 = fast2.next
236 fast2 = fast1.next
237 if fast1.value == slow_value or fast2.value == slow_value: