Home
last modified time | relevance | path

Searched refs:m_tail (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
DDoublyLinkedList.h88 T* m_tail; variable
93 , m_tail(0) in DoublyLinkedList()
113 m_tail = 0; in clear()
123 return m_tail; in tail()
129 ASSERT(!m_tail); in push()
131 m_tail = node; in push()
137 ASSERT(m_tail); in push()
146 if (!m_tail) { in append()
149 m_tail = node; in append()
156 m_tail->setNext(node); in append()
[all …]
DListHashSet.h133 reverse_iterator rbegin() { return makeReverseIterator(m_tail); } in rbegin()
135 const_reverse_iterator rbegin() const { return makeConstReverseIterator(m_tail); } in rbegin()
208 Node* m_tail; variable
516 m_position = m_set->m_tail;
621 ASSERT(m_position != m_set->m_tail);
664 , m_tail(0) in ListHashSet()
671 , m_tail(0) in ListHashSet()
691 std::swap(m_tail, other.m_tail); in swap()
728 return m_tail->m_value; in last()
735 return m_tail->m_value; in last()
[all …]
/external/opencv/cv/src/
D_cvlist.h78 CVPOS m_tail; member
168 pl->m_tail.m_pos = NULL;\
190 return l->m_tail;\
225 l->m_tail.m_pos = NULL;\
242 l->m_tail.m_pos = element;\
252 element->m_prev = (ELEMENT_##type*)(l->m_tail.m_pos);\
262 l->m_tail.m_pos = element;\
263 return l->m_tail;\
278 ELEMENT_##type* element = ((ELEMENT_##type*)(l->m_tail.m_pos));\
283 l->m_tail.m_pos = element->m_prev;\
[all …]
/external/lldb/source/DataFormatters/
DLibCxxList.cpp150 m_tail(NULL), in LibcxxStdListSyntheticFrontEnd()
184 if (!m_head || !m_tail || m_node_address == 0) in CalculateNumChildren()
204 uint64_t prev_val = m_tail->GetValueAsUnsigned(0); in CalculateNumChildren()
232 if (!m_head || !m_tail || m_node_address == 0) in GetChildAtIndex()
257 m_head = m_tail = NULL; in Update()
284 m_tail = impl_sp->GetChildMemberWithName(ConstString("__prev_"), true).get(); in Update()
/external/chromium_org/third_party/smhasher/src/
DMurmurHash2.cpp268 m_tail = 0; in Begin()
294 mmix(m_hash,m_tail); in End()
313 m_tail |= (*data++) << (m_count * 8); in MixTail()
320 mmix(m_hash,m_tail); in MixTail()
321 m_tail = 0; in MixTail()
328 uint32_t m_tail; member in CMurmurHash2A
/external/chromium_org/third_party/WebKit/Source/core/fetch/
DMemoryCache.cpp91 visitor->trace(m_tail); in trace()
242 MemoryCacheEntry* current = m_liveDecodedResources[priority].m_tail; in pruneLiveResources()
277 MemoryCacheEntry* current = m_allResources[i].m_tail; in pruneDeadResources()
298 MemoryCacheEntry* current = m_allResources[i].m_tail; in pruneDeadResources()
322 current = m_allResources[i].m_tail; in pruneDeadResources()
414 list->m_tail = previous; in removeFromLRUList()
432 list->m_tail = entry; in insertInLRUList()
477 list->m_tail = previous; in removeFromLiveDecodedResourcesList()
498 list->m_tail = entry; in insertInLiveDecodedResourcesList()
785 Resource* current = m_allResources[i].m_tail; in dumpLRULists()
DMemoryCache.h117 RawPtrWillBeMember<MemoryCacheEntry> m_tail; member
119 MemoryCacheLRUList() : m_head(nullptr), m_tail(nullptr) { } in MemoryCacheLRUList()
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
Dsctp_asconf.c602 struct mbuf *n, *m_ack, *m_result, *m_tail; in sctp_handle_asconf() local
667 m_tail = m_ack; /* current reply chain's tail */ in sctp_handle_asconf()
777 SCTP_BUF_NEXT(m_tail) = m_result; in sctp_handle_asconf()
778 m_tail = m_result; in sctp_handle_asconf()
/external/lldb/include/lldb/DataFormatters/
DCXXFormatterFunctions.h824 ValueObject* m_tail; variable