Home
last modified time | relevance | path

Searched refs:m_first (Results 1 – 17 of 17) sorted by relevance

/third_party/boost/boost/circular_buffer/
Dbase.hpp191 pointer m_first; member in boost::circular_buffer
256 iterator begin() BOOST_NOEXCEPT { return iterator(this, empty() ? 0 : m_first); } in begin()
288 …const_iterator begin() const BOOST_NOEXCEPT { return const_iterator(this, empty() ? 0 : m_first); } in begin()
388 return *add(m_first, index); in operator []()
407 return *add(m_first, index); in operator []()
463 return *m_first; in front()
499 return *m_first; in front()
567 return array_range(m_first, (m_last <= m_first && !empty() ? m_end : m_last) - m_first); in array_one()
587 return array_range(m_buff, m_last <= m_first && !empty() ? m_last - m_buff : 0); in array_two()
607 … return const_array_range(m_first, (m_last <= m_first && !empty() ? m_end : m_last) - m_first); in array_one()
[all …]
Ddetails.hpp136 Iterator m_first; member
141 : m_first(first), m_last(last), m_alloc(alloc) {} in assign_range()
145 boost::cb_details::uninitialized_copy(m_first, m_last, p, m_alloc); in operator ()()
313 BOOST_CB_ASSERT(m_it != m_buff->m_first); // check for iterator pointing to begin() in operator --()
406 (it.m_it < m_buff->m_first ? it.m_it + (m_buff->m_end - m_buff->m_first) in linearize_pointer()
407 : m_buff->m_buff + (it.m_it - m_buff->m_first)); in linearize_pointer()
/third_party/boost/boost/numeric/odeint/stepper/detail/
Drotating_buffer.hpp36 rotating_buffer( void ) : m_first( 0 ) in rotating_buffer()
56 if( m_first == 0 ) in rotate()
57 m_first = dim-1; in rotate()
59 --m_first; in rotate()
70 return ( ( i + m_first ) % dim ); in get_index()
73 size_t m_first; member in boost::numeric::odeint::detail::rotating_buffer
/third_party/vk-gl-cts/framework/common/
DtcuEither.hpp72 First* m_first; member
146 m_first->~First(); in release()
151 m_first = DE_NULL; in release()
158 m_first = new(m_data)First(first); in Either()
179 m_first = new(m_data)First(*other.m_first); in Either()
195 m_first = new(m_data)First(*other.m_first); in operator =()
208 m_first = new(m_data)First(first); in operator =()
240 return *m_first; in getFirst()
/third_party/vk-gl-cts/framework/delibs/decpp/
DdeAppendList.hpp90 Block* m_first; member in de::AppendList
167 , m_first (new Block(0, blockSize)) in AppendList()
168 , m_last (m_first) in AppendList()
176 Block* curBlock = m_first; in ~AppendList()
200 Block* curBlock = m_first; in clear()
212 if (delBlock != m_first) in clear()
219 m_first->next = DE_NULL; in clear()
220 m_last = m_first; in clear()
274 return const_iterator(m_first, m_blockSize, 0); in begin()
280 return iterator(m_first, m_blockSize, 0); in begin()
/third_party/boost/libs/range/test/
Dbegin.cpp80 : m_first() in MockTestBeginCollection()
85 const_iterator begin() const { return m_first; } in begin()
86 iterator begin() { return m_first; } in begin()
91 iterator m_first; member in boost::MockTestBeginCollection
Dend.cpp80 : m_first() in MockTestEndCollection()
85 const_iterator begin() const { return m_first; } in begin()
86 iterator begin() { return m_first; } in begin()
91 iterator m_first; member in boost::MockTestEndCollection
/third_party/boost/boost/container/
Ddeque.hpp139 Pointer m_first; member in boost::container::dtl::deque_iterator
146 BOOST_CONTAINER_FORCEINLINE Pointer get_first() const { return m_first; } in get_first()
151 : m_cur(x), m_first(*y), m_last(*y + block_size), m_node(y) in deque_iterator()
155 …: m_cur(), m_first(), m_last(), m_node() //Value initialization to achieve "null iterators" (N364… in deque_iterator()
159 : m_cur(x.get_cur()), m_first(x.get_first()), m_last(x.get_last()), m_node(x.get_node()) in deque_iterator()
163 : m_cur(x.get_cur()), m_first(x.get_first()), m_last(x.get_last()), m_node(x.get_node()) in deque_iterator()
167 : m_cur(cur), m_first(first), m_last(last), m_node(node) in deque_iterator()
171 …{ m_cur = x.get_cur(); m_first = x.get_first(); m_last = x.get_last(); m_node = x.get_node(); ret… in operator =()
189 const difference_type block_size = this->m_last - this->m_first; in operator -()
192 (this->m_cur - this->m_first) + (x.m_last - x.m_cur); in operator -()
[all …]
Dstring.hpp577 const Pointer m_first; member
581 : m_first(f), m_last(l) {} in Not_within_traits()
585 return boost::container::find_if(m_first, m_last, in operator ()()
/third_party/boost/boost/range/
Dirange.hpp134 : m_first(first) in integer_iterator_with_step()
168 return m_first + (m_step * m_step_size); in dereference()
172 value_type m_first; member in boost::range_detail::integer_iterator_with_step
/third_party/boost/boost/range/adaptor/
Dstrided.hpp285 , m_first() in strided_iterator()
297 , m_first(first) in strided_iterator()
317 , m_first(other.base_begin()) in strided_iterator()
325 return m_first; in base_begin()
366 m_it = m_first + m_index; in update()
402 base_iterator m_first; member in boost::range_detail::strided_iterator
/third_party/boost/boost/move/algo/detail/
Dmerge.hpp223 : m_first(first), m_last(first), m_cap(last) in range_xbuf()
229 BOOST_ASSERT(size_type(n) <= size_type(m_cap-m_first)); in move_assign()
230 m_last = Op()(forward_t(), first, first+n, m_first); in move_assign()
237 { return m_cap-m_first; } in capacity()
240 { return m_first; } in data()
246 { return m_last-m_first; } in size()
249 { return m_first == m_last; } in empty()
253 m_last = m_first; in clear()
267 m_last = m_first; in set_size()
272 Iterator const m_first; member in boost::movelib::range_xbuf
/third_party/boost/boost/numeric/odeint/stepper/
Dbulirsch_stoer.hpp96 m_last_step_rejected( false ) , m_first( true ) , in bulirsch_stoer()
239 if( (k == m_current_k_opt-1) || m_first ) in try_step()
257 else if( should_reject( error , k ) && !m_first ) in try_step()
328 m_first = false; in try_step()
339 m_first = true; in reset()
488 bool m_first; member in boost::numeric::odeint::bulirsch_stoer
Dbulirsch_stoer_dense_out.hpp107 m_last_step_rejected( false ) , m_first( true ) , in bulirsch_stoer_dense_out()
205 if( (k == m_current_k_opt-1) || m_first ) in try_step()
222 else if( should_reject( error , k ) && !m_first ) in try_step()
328 if( m_first ) in do_step()
340 m_first = false; in do_step()
382 m_first = true; in reset()
678 bool m_first; member in boost::numeric::odeint::bulirsch_stoer_dense_out
/third_party/boost/libs/test/test/framework-ts/
Dlog-formatter-test.cpp146 if(m_first) { in save_pattern()
148 m_first = false; in save_pattern()
178 static bool m_first; member
183 bool save_arguments::m_first = true; member in save_arguments
/third_party/boost/libs/log/src/setup/
Dformatter_parser.cpp134 m_first(boost::move(first)), m_second(boost::move(second))
140 m_first(rec, strm);
145 formatter_type m_first;
/third_party/boost/boost/geometry/algorithms/detail/disjoint/
Dmultipoint_geometry.hpp66 : base_type(), m_first(first), m_last(last) in unary_disjoint_predicate()
72 return !std::binary_search(m_first, in apply()
79 Iterator m_first, m_last; member in boost::geometry::detail::disjoint::multipoint_multipoint::unary_disjoint_predicate