Home
last modified time | relevance | path

Searched refs:m_head (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/boost/spirit/home/classic/iterator/
Dfixed_size_queue.hpp24 BOOST_SPIRIT_ASSERT(((m_tail + N + 1) - m_head) % (N+1) == m_size % (N+1)) \
115 if (pos1 < p.self->m_head)
117 if (pos2 < p2.self->m_head)
210 return iterator(position(this, m_head)); in begin()
215 return const_iterator(position(this, m_head)); in begin()
235 return m_queue[m_head]; in front()
240 return m_queue[m_head]; in front()
248 std::size_t m_head; member in boost::spirit::fixed_size_queue
257 : m_head(0) in fixed_size_queue()
263 BOOST_SPIRIT_ASSERT(m_head <= N+1); in fixed_size_queue()
[all …]
/third_party/boost/boost/spirit/home/support/iterators/detail/
Dfixed_size_queue.hpp27 BOOST_ASSERT(((m_tail + N + 1) - m_head) % (N+1) == m_size % (N+1)) \
108 if (pos1 < p.self->m_head) in distance_to()
110 if (pos2 < p2.self->m_head) in distance_to()
203 return iterator(position(this, m_head)); in begin()
208 return const_iterator(position(this, m_head)); in begin()
228 return m_queue[m_head]; in front()
233 return m_queue[m_head]; in front()
241 std::size_t m_head; member in boost::spirit::detail::fixed_size_queue
250 : m_head(0) in fixed_size_queue()
256 BOOST_ASSERT(m_head <= N+1); in fixed_size_queue()
[all …]
/third_party/boost/boost/container/detail/
Dvariadic_templates_tools.hpp47 : inherited(), m_head() in tuple()
52 : inherited(::boost::forward<Args>(args)...), m_head(::boost::forward<U>(u)) in tuple()
58 : inherited(other.tail()), m_head(other.head()) in tuple()
64 m_head = other.head(); in operator =()
69 typename add_reference<Head>::type head() { return m_head; } in head()
70 typename add_reference<const Head>::type head() const { return m_head; } in head()
76 Head m_head; member in boost::container::dtl::tuple
/third_party/boost/libs/atomic/src/
Dlock_pool.cpp643 semaphore* m_head; member in boost::atomics::detail::lock_pool::__anon57522a290111::wait_state::semaphore_list
647 m_head(NULL) in semaphore_list()
654 return m_head == NULL; in empty()
660 return m_head; in front()
666 semaphore* sem = m_head; in eject()
667 m_head = NULL; in eject()
674 if (m_head) in push_front()
675 sem->link_before(m_head); in push_front()
677 m_head = sem; in push_front()
684 semaphore* sem = m_head; in pop_front()
[all …]