Home
last modified time | relevance | path

Searched refs:m_tail (Results 1 – 6 of 6) 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.h165 Node* m_tail; variable
363 m_position = m_set->m_tail;
473 ASSERT(m_position != m_set->m_tail);
513 , m_tail(0) in ListHashSet()
520 , m_tail(0) in ListHashSet()
540 std::swap(m_tail, other.m_tail); in swap()
609 return makeReverseIterator(m_tail); in rbegin()
621 return makeConstReverseIterator(m_tail); in rbegin()
656 return m_tail->m_value; in last()
663 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/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.cpp184 Resource* current = m_liveDecodedResources[priority].m_tail; in pruneLiveResources()
219 Resource* current = m_allResources[i].m_tail; in pruneDeadResources()
236 Resource* current = m_allResources[i].m_tail; in pruneDeadResources()
260 current = m_allResources[i].m_tail; in pruneDeadResources()
366 else if (list->m_tail == resource) in removeFromLRUList()
367 list->m_tail = prev; in removeFromLRUList()
390 list->m_tail = resource; in insertInLRUList()
439 else if (list->m_tail == resource) in removeFromLiveDecodedResourcesList()
440 list->m_tail = prev; in removeFromLiveDecodedResourcesList()
461 list->m_tail = resource; in insertInLiveDecodedResourcesList()
[all …]
DMemoryCache.h72 Resource* m_tail; member
73 LRUList() : m_head(0), m_tail(0) { } in LRUList()