Home
last modified time | relevance | path

Searched refs:m_head (Results 201 – 225 of 1115) sorted by relevance

12345678910>>...45

/dports/emulators/mess/mame-mame0226/src/lib/netlist/plib/
H A Dplists.h236 constexpr linkedlist_t() noexcept : m_head(nullptr) {} in linkedlist_t()
243 elem->m_next = m_head; in push_front()
245 if (m_head) in push_front()
246 m_head->m_prev = elem; in push_front()
247 m_head = elem; in push_front()
252 LC ** p(&m_head); in push_back()
269 m_head = elem->m_next; in remove()
278 constexpr LC *front() const noexcept { return m_head; } in front()
282 LC *p(m_head); in clear()
290 m_head = nullptr; in clear()
[all …]
/dports/emulators/mame/mame-mame0226/src/lib/netlist/plib/
H A Dplists.h236 constexpr linkedlist_t() noexcept : m_head(nullptr) {} in linkedlist_t()
243 elem->m_next = m_head; in push_front()
245 if (m_head) in push_front()
246 m_head->m_prev = elem; in push_front()
247 m_head = elem; in push_front()
252 LC ** p(&m_head); in push_back()
269 m_head = elem->m_next; in remove()
278 constexpr LC *front() const noexcept { return m_head; } in front()
282 LC *p(m_head); in clear()
290 m_head = nullptr; in clear()
[all …]
/dports/cad/horizon-eda/horizon-2.1.0/3rd_party/router/router/
H A Dpns_line_placer.cpp82 m_head.RemoveVia(); in ToggleVia()
421 m_head = walkFull; in rhWalkOnly()
430 LINE newHead( m_head ), bestHead( m_head ); in rhMarkObstacles()
468 m_head = newHead; in rhMarkObstacles()
470 aNewHead = m_head; in rhMarkObstacles()
526 l0 = m_head; in rhStopAtNearestObstacle()
569 m_head = l_cur; in rhStopAtNearestObstacle()
570 aNewHead = m_head; in rhStopAtNearestObstacle()
693 m_head = linetmp; in optimizeTailHeadTransition()
813 LINE tmp( m_head ); in Trace()
[all …]
/dports/science/chrono/chrono-7.0.1/src/chrono_thirdparty/HACD/
H A DhacdCircularList.h53 CircularListElement<T> * & GetHead() { return m_head;} in GetHead()
54 const CircularListElement<T> * GetHead() const { return m_head;} in GetHead()
57 const T & GetData() const { return m_head->GetData(); } in GetData()
58 T & GetData() { return m_head->GetData();} in GetData()
70 m_head = 0; in CircularList()
78 CircularListElement<T> * m_head; //!< a pointer to the head of the circular list
/dports/devel/sobjectizer/sobjectizer-v.5.7.2.5/dev/so_5/disp/thread_pool/impl/
H A Ddisp.hpp84 , m_tail( &m_head ) in agent_queue_t()
89 while( m_head.m_next ) in ~agent_queue_t()
105 was_empty = (nullptr == m_head.m_next); in push()
126 return *(m_head.m_next); in front()
187 const auto emptyness = m_head.m_next ? in pop()
191 m_tail = &m_head; in pop()
218 empty = (nullptr == m_head.m_next); in wait_for_emptyness()
253 demand_t m_head; member in so_5::disp::thread_pool::impl::agent_queue_t
272 std::unique_ptr< demand_t > to_be_deleted{ m_head.m_next }; in remove_head()
273 m_head.m_next = m_head.m_next->m_next; in remove_head()
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/lib/deps/rpclib/include/rpc/msgpack/detail/
H A Dcpp11_zone.hpp133 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
140 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
149 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
156 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
160 m_head->m_next = nullptr; in MSGPACK_API_VERSION_NAMESPACE()
162 m_ptr = reinterpret_cast<char*>(m_head) + sizeof(chunk); in MSGPACK_API_VERSION_NAMESPACE()
165 :m_free(other.m_free), m_ptr(other.m_ptr), m_head(other.m_head) in MSGPACK_API_VERSION_NAMESPACE()
167 other.m_head = nullptr; in MSGPACK_API_VERSION_NAMESPACE()
178 chunk* m_head; in MSGPACK_API_VERSION_NAMESPACE() member
296 c->m_next = cl->m_head; in MSGPACK_API_VERSION_NAMESPACE()
[all …]
/dports/devel/sobjectizer/sobjectizer-v.5.7.2.5/dev/so_5/disp/prio_one_thread/strictly_ordered/impl/
H A Ddemand_queue.hpp91 demand_t * m_head = nullptr; member
175 demand_unique_ptr_t result{ m_current_priority->m_head }; in pop()
177 m_current_priority->m_head = result->m_next; in pop()
181 if( !m_current_priority->m_head ) in pop()
190 if( m_current_priority->m_head ) in pop()
257 auto h = queue_info.m_head; in cleanup_queue()
304 queue.m_head = demand.release(); in add_demand_to_queue()
305 queue.m_tail = queue.m_head; in add_demand_to_queue()
/dports/biology/avida/avida-2.12.4-src/avida-core/source/main/
H A DcEventList.cc48 while (m_head != NULL) { in ~cEventList()
49 current = m_head; in ~cEventList()
50 m_head = m_head->GetNext(); in ~cEventList()
66 assert(m_head == NULL); in AddEvent()
67 m_head = entry; in AddEvent()
112 assert(entry == m_head); in Delete()
113 m_head = entry->GetNext(); in Delete()
156 cEventListEntry* entry = m_head; in Process()
220 cEventListEntry* entry = m_head; in ProcessInterrupt()
266 cEventListEntry* entry = m_head; in Sync()
[all …]
/dports/devel/rpclib/rpclib-2.2.1/include/rpc/msgpack/v1/detail/
H A Dcpp11_zone.hpp117 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
124 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
133 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
140 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
144 m_head->m_next = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
146 m_ptr = reinterpret_cast<char*>(m_head) + sizeof(chunk); in MSGPACK_API_VERSION_NAMESPACE()
149 :m_free(other.m_free), m_ptr(other.m_ptr), m_head(other.m_head) in MSGPACK_API_VERSION_NAMESPACE()
151 other.m_head = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
162 chunk* m_head; in MSGPACK_API_VERSION_NAMESPACE() member
286 c->m_next = cl->m_head; in MSGPACK_API_VERSION_NAMESPACE()
[all …]
/dports/devel/cquery/cquery-20180718/third_party/msgpack-c/include/msgpack/v1/detail/
H A Dcpp11_zone.hpp117 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
124 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
133 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
140 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
144 m_head->m_next = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
146 m_ptr = reinterpret_cast<char*>(m_head) + sizeof(chunk); in MSGPACK_API_VERSION_NAMESPACE()
149 :m_free(other.m_free), m_ptr(other.m_ptr), m_head(other.m_head) in MSGPACK_API_VERSION_NAMESPACE()
151 other.m_head = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
162 chunk* m_head; in MSGPACK_API_VERSION_NAMESPACE() member
286 c->m_next = cl->m_head; in MSGPACK_API_VERSION_NAMESPACE()
[all …]
/dports/www/firefox/firefox-99.0/third_party/msgpack/include/msgpack/v1/detail/
H A Dcpp11_zone.hpp117 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
124 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
133 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
140 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
144 m_head->m_next = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
146 m_ptr = reinterpret_cast<char*>(m_head) + sizeof(chunk); in MSGPACK_API_VERSION_NAMESPACE()
149 :m_free(other.m_free), m_ptr(other.m_ptr), m_head(other.m_head) in MSGPACK_API_VERSION_NAMESPACE()
151 other.m_head = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
162 chunk* m_head; in MSGPACK_API_VERSION_NAMESPACE() member
286 c->m_next = cl->m_head; in MSGPACK_API_VERSION_NAMESPACE()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/msgpack/include/msgpack/v1/detail/
H A Dcpp11_zone.hpp117 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
124 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
133 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
140 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
144 m_head->m_next = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
146 m_ptr = reinterpret_cast<char*>(m_head) + sizeof(chunk); in MSGPACK_API_VERSION_NAMESPACE()
149 :m_free(other.m_free), m_ptr(other.m_ptr), m_head(other.m_head) in MSGPACK_API_VERSION_NAMESPACE()
151 other.m_head = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
162 chunk* m_head; in MSGPACK_API_VERSION_NAMESPACE() member
286 c->m_next = cl->m_head; in MSGPACK_API_VERSION_NAMESPACE()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/msgpack/include/msgpack/v1/detail/
H A Dcpp11_zone.hpp117 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
124 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
133 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
140 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
144 m_head->m_next = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
146 m_ptr = reinterpret_cast<char*>(m_head) + sizeof(chunk); in MSGPACK_API_VERSION_NAMESPACE()
149 :m_free(other.m_free), m_ptr(other.m_ptr), m_head(other.m_head) in MSGPACK_API_VERSION_NAMESPACE()
151 other.m_head = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
162 chunk* m_head; in MSGPACK_API_VERSION_NAMESPACE() member
286 c->m_next = cl->m_head; in MSGPACK_API_VERSION_NAMESPACE()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/msgpack/include/msgpack/v1/detail/
H A Dcpp11_zone.hpp117 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
124 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
133 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
140 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
144 m_head->m_next = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
146 m_ptr = reinterpret_cast<char*>(m_head) + sizeof(chunk); in MSGPACK_API_VERSION_NAMESPACE()
149 :m_free(other.m_free), m_ptr(other.m_ptr), m_head(other.m_head) in MSGPACK_API_VERSION_NAMESPACE()
151 other.m_head = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
162 chunk* m_head; in MSGPACK_API_VERSION_NAMESPACE() member
286 c->m_next = cl->m_head; in MSGPACK_API_VERSION_NAMESPACE()
[all …]
/dports/devel/msgpack/msgpack-c-cpp-3.3.0/include/msgpack/v1/detail/
H A Dcpp11_zone.hpp117 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
124 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
133 chunk* c = m_head; in MSGPACK_API_VERSION_NAMESPACE()
140 m_head = c; in MSGPACK_API_VERSION_NAMESPACE()
144 m_head->m_next = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
146 m_ptr = reinterpret_cast<char*>(m_head) + sizeof(chunk); in MSGPACK_API_VERSION_NAMESPACE()
149 :m_free(other.m_free), m_ptr(other.m_ptr), m_head(other.m_head) in MSGPACK_API_VERSION_NAMESPACE()
151 other.m_head = MSGPACK_NULLPTR; in MSGPACK_API_VERSION_NAMESPACE()
162 chunk* m_head; in MSGPACK_API_VERSION_NAMESPACE() member
286 c->m_next = cl->m_head; in MSGPACK_API_VERSION_NAMESPACE()
[all …]
/dports/devel/sobjectizer/sobjectizer-v.5.7.2.5/dev/so_5/disp/prio_one_thread/quoted_round_robin/impl/
H A Ddemand_queue.hpp96 demand_t * m_head = nullptr; member
200 while( !m_current_priority->m_head ) in pop()
204 demand_unique_ptr_t result{ m_current_priority->m_head }; in pop()
206 m_current_priority->m_head = result->m_next; in pop()
207 if( !m_current_priority->m_head ) in pop()
285 auto h = queue_info.m_head; in cleanup_queue()
327 queue.m_head = demand.release(); in add_demand_to_queue()
328 queue.m_tail = queue.m_head; in add_demand_to_queue()
/dports/astro/marble/marble-21.12.3/src/lib/marble/geodata/scene/
H A DGeoSceneDocument.cpp25 : m_head(new GeoSceneHead), in GeoSceneDocumentPrivate()
34 delete m_head; in ~GeoSceneDocumentPrivate()
40 GeoSceneHead* m_head; member in Marble::GeoSceneDocumentPrivate
68 return d->m_head; in head()
73 return d->m_head; in head()
/dports/audio/giada/giada-0.17.1/src/core/
H A Dqueue.h47 Queue() : m_head(0), m_tail(0) in Queue()
57 std::size_t curr = m_head.load(); in pop()
62 m_head.store(increment(curr)); in pop()
72 if (next == m_head.load()) // Queue full, nothing to do in push()
89 std::atomic<std::size_t> m_head; variable
/dports/astro/phd2/phd2-2.6.10/
H A Dcircbuf.h45 unsigned int m_head; variable
82 m_head(0), in circular_buffer()
92 m_head(0), in circular_buffer()
118 m_head = m_tail = m_size = 0; in clear()
124 m_ary[m_head] = t; in push_front()
125 m_head = (m_head + 1) % m_capacity; in push_front()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/loader/cache/
H A DMemoryCache.cpp285 if (m_allResources[i].m_head) in pruneDeadResources()
424 else if (list->m_head == resource) in removeFromLRUList()
425 list->m_head = next; in removeFromLRUList()
437 resource->m_nextInAllResourcesList = list->m_head; in insertInLRUList()
438 if (list->m_head) in insertInLRUList()
439 list->m_head->m_prevInAllResourcesList = resource; in insertInLRUList()
440 list->m_head = resource; in insertInLRUList()
539 else if (m_liveDecodedResources.m_head == resource) in removeFromLiveDecodedResourcesList()
540 m_liveDecodedResources.m_head = next; in removeFromLiveDecodedResourcesList()
550 if (m_liveDecodedResources.m_head) in insertInLiveDecodedResourcesList()
[all …]
/dports/multimedia/sabbu/sabbu-0.3.0/Source/
H A DkryList.cpp36 kryList<T>::kryList() : m_head(NULL), m_tail(NULL), m_length(0), m_id(0), m_iterators(NULL) in kryList()
94 if(this->m_head == NULL) in Append()
96 this->m_head = node; in Append()
156 if(this->m_head == NULL) in ForEach()
165 for(node = this->m_head; node; node = node->next) in ForEach()
176 for(node = this->m_head; node; node = node->next) in PrintDebug()
260 this->m_head = node->next; in Remove()
286 for(node = this->m_head; node; node = node->next) in Find()
325 if(this->m_head == NULL) in Clear()
328 …for(ptr_node = this->m_head, next = ptr_node->next; ptr_node; ptr_node = next, next = (ptr_node ? … in Clear()
[all …]
/dports/devel/sobjectizer/sobjectizer-v.5.7.2.5/dev/so_5/disp/adv_thread_pool/impl/
H A Ddisp.hpp113 , m_tail( &m_head ) in agent_queue_t()
120 while( m_head.m_next ) in ~agent_queue_t()
147 if( m_head.m_next == m_tail ) in push()
180 return m_head.m_next->m_demand; in peek_front()
198 if( !m_head.m_next ) in worker_started()
199 m_tail = &m_head; in worker_started()
251 empty() const { return nullptr == m_head.m_next; } in empty()
281 demand_t m_head; member in so_5::disp::adv_thread_pool::impl::agent_queue_t
310 auto to_be_deleted = m_head.m_next; in delete_head()
311 m_head.m_next = m_head.m_next->m_next; in delete_head()
/dports/devel/bullet/bullet3-3.21/src/LinearMath/
H A DbtList.h60 btGEN_List() : m_head(&m_tail, 0), m_tail(0, &m_head) {} in btGEN_List()
62 btGEN_Link *getHead() const { return m_head.getNext(); } in getHead()
65 void addHead(btGEN_Link *link) { link->insertAfter(&m_head); } in addHead()
69 btGEN_Link m_head;
/dports/graphics/blender/blender-2.91.0/extern/bullet2/src/LinearMath/
H A DbtList.h60 btGEN_List() : m_head(&m_tail, 0), m_tail(0, &m_head) {} in btGEN_List()
62 btGEN_Link *getHead() const { return m_head.getNext(); } in getHead()
65 void addHead(btGEN_Link *link) { link->insertAfter(&m_head); } in addHead()
69 btGEN_Link m_head;
/dports/games/supertuxkart/SuperTuxKart-1.2-src/lib/bullet/src/LinearMath/
H A DbtList.h57 btGEN_List() : m_head(&m_tail, 0), m_tail(0, &m_head) {} in btGEN_List()
59 btGEN_Link *getHead() const { return m_head.getNext(); } in getHead()
62 void addHead(btGEN_Link *link) { link->insertAfter(&m_head); } in addHead()
66 btGEN_Link m_head;

12345678910>>...45