HomeSort by: relevance | last modified time | path
    Searched defs:_M_first (Results 1 - 22 of 22) sorted by relevancy

  /src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
iterator.h 130 _Iterator1 _M_first;
139 _M_first = __first;
148 ++_M_first;
157 { return _IteratorTriple(_M_first++, _M_second++, _M_third++); }
163 --_M_first;
172 { return _IteratorTriple(_M_first--, _M_second--, _M_third--); }
181 _M_first = __other._M_first;
189 { return _IteratorTriple(_M_first + __delta, _M_second + __delta,
194 { return _M_first - __other._M_first;
    [all...]
iterator.h 130 _Iterator1 _M_first;
139 _M_first = __first;
148 ++_M_first;
157 { return _IteratorTriple(_M_first++, _M_second++, _M_third++); }
163 --_M_first;
172 { return _IteratorTriple(_M_first--, _M_second--, _M_third--); }
181 _M_first = __other._M_first;
189 { return _IteratorTriple(_M_first + __delta, _M_second + __delta,
194 { return _M_first - __other._M_first;
    [all...]
workstealing.h 62 _GLIBCXX_JOB_VOLATILE _DifferenceType _M_first;
69 /** @brief Number of elements, i.e. @c _M_last-_M_first+1.
180 __my_job._M_first = static_cast<_DifferenceType>
186 __my_job._M_load = __my_job._M_last - __my_job._M_first + 1;
188 // Init result with _M_first value (to have a base value for reduction)
189 if (__my_job._M_first <= __my_job._M_last)
192 _DifferenceType __my_first = __my_job._M_first;
194 ++__my_job._M_first;
210 while (__my_job._M_first <= __my_job._M_last)
215 __fetch_and_add<_DifferenceType>(&(__my_job._M_first),
    [all...]
workstealing.h 62 _GLIBCXX_JOB_VOLATILE _DifferenceType _M_first;
69 /** @brief Number of elements, i.e. @c _M_last-_M_first+1.
180 __my_job._M_first = static_cast<_DifferenceType>
186 __my_job._M_load = __my_job._M_last - __my_job._M_first + 1;
188 // Init result with _M_first value (to have a base value for reduction)
189 if (__my_job._M_first <= __my_job._M_last)
192 _DifferenceType __my_first = __my_job._M_first;
194 ++__my_job._M_first;
210 while (__my_job._M_first <= __my_job._M_last)
215 __fetch_and_add<_DifferenceType>(&(__my_job._M_first),
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
iterator.h 130 _Iterator1 _M_first;
139 _M_first = __first;
148 ++_M_first;
157 { return _IteratorTriple(_M_first++, _M_second++, _M_third++); }
163 --_M_first;
172 { return _IteratorTriple(_M_first--, _M_second--, _M_third--); }
181 _M_first = __other._M_first;
189 { return _IteratorTriple(_M_first + __delta, _M_second + __delta,
194 { return _M_first - __other._M_first;
    [all...]
iterator.h 130 _Iterator1 _M_first;
139 _M_first = __first;
148 ++_M_first;
157 { return _IteratorTriple(_M_first++, _M_second++, _M_third++); }
163 --_M_first;
172 { return _IteratorTriple(_M_first--, _M_second--, _M_third--); }
181 _M_first = __other._M_first;
189 { return _IteratorTriple(_M_first + __delta, _M_second + __delta,
194 { return _M_first - __other._M_first;
    [all...]
workstealing.h 62 _GLIBCXX_JOB_VOLATILE _DifferenceType _M_first;
69 /** @brief Number of elements, i.e. @c _M_last-_M_first+1.
180 __my_job._M_first = static_cast<_DifferenceType>
186 __my_job._M_load = __my_job._M_last - __my_job._M_first + 1;
188 // Init result with _M_first value (to have a base value for reduction)
189 if (__my_job._M_first <= __my_job._M_last)
192 _DifferenceType __my_first = __my_job._M_first;
194 ++__my_job._M_first;
210 while (__my_job._M_first <= __my_job._M_last)
215 __fetch_and_add<_DifferenceType>(&(__my_job._M_first),
    [all...]
workstealing.h 62 _GLIBCXX_JOB_VOLATILE _DifferenceType _M_first;
69 /** @brief Number of elements, i.e. @c _M_last-_M_first+1.
180 __my_job._M_first = static_cast<_DifferenceType>
186 __my_job._M_load = __my_job._M_last - __my_job._M_first + 1;
188 // Init result with _M_first value (to have a base value for reduction)
189 if (__my_job._M_first <= __my_job._M_last)
192 _DifferenceType __my_first = __my_job._M_first;
194 ++__my_job._M_first;
210 while (__my_job._M_first <= __my_job._M_last)
215 __fetch_and_add<_DifferenceType>(&(__my_job._M_first),
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
ranges_uninitialized.h 104 _Iter _M_first;
110 : _M_first(__iter), _M_cur(std::__addressof(__iter))
120 ranges::destroy(std::move(_M_first), *_M_cur);
ranges_uninitialized.h 104 _Iter _M_first;
110 : _M_first(__iter), _M_cur(std::__addressof(__iter))
120 ranges::destroy(std::move(_M_first), *_M_cur);
stl_deque.h 143 _Elt_pointer _M_first;
148 : _M_cur(__x), _M_first(*__y),
152 : _M_cur(), _M_first(), _M_last(), _M_node() { }
157 : _M_cur(__x._M_cur), _M_first(__x._M_first),
165 : _M_cur(__x._M_cur), _M_first(__x._M_first),
169 : _M_cur(__x._M_cur), _M_first(__x._M_first),
196 _M_cur = _M_first;
    [all...]
unicode.h 142 { return _M_first(); }
185 if (!_M_buf_index && _M_curr() != _M_first())
476 _M_first() const requires bidirectional_iterator<_Iter>
477 { return _M_first_and_curr._M_first; }
510 : _M_first(__first), _M_curr(__curr) { }
515 : _M_first(__other._M_first), _M_curr(__other._M_curr) { }
517 _It _M_first;
stl_deque.h 143 _Elt_pointer _M_first;
148 : _M_cur(__x), _M_first(*__y),
152 : _M_cur(), _M_first(), _M_last(), _M_node() { }
157 : _M_cur(__x._M_cur), _M_first(__x._M_first),
165 : _M_cur(__x._M_cur), _M_first(__x._M_first),
169 : _M_cur(__x._M_cur), _M_first(__x._M_first),
196 _M_cur = _M_first;
    [all...]
unicode.h 142 { return _M_first(); }
185 if (!_M_buf_index && _M_curr() != _M_first())
476 _M_first() const requires bidirectional_iterator<_Iter>
477 { return _M_first_and_curr._M_first; }
510 : _M_first(__first), _M_curr(__curr) { }
515 : _M_first(__other._M_first), _M_curr(__other._M_curr) { }
517 _It _M_first;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
ranges_uninitialized.h 104 _Iter _M_first;
110 : _M_first(__iter), _M_cur(std::__addressof(__iter))
120 ranges::destroy(std::move(_M_first), *_M_cur);
ranges_uninitialized.h 104 _Iter _M_first;
110 : _M_first(__iter), _M_cur(std::__addressof(__iter))
120 ranges::destroy(std::move(_M_first), *_M_cur);
stl_deque.h 143 _Elt_pointer _M_first;
148 : _M_cur(__x), _M_first(*__y),
152 : _M_cur(), _M_first(), _M_last(), _M_node() { }
157 : _M_cur(__x._M_cur), _M_first(__x._M_first),
165 : _M_cur(__x._M_cur), _M_first(__x._M_first),
169 : _M_cur(__x._M_cur), _M_first(__x._M_first),
196 _M_cur = _M_first;
    [all...]
stl_deque.h 143 _Elt_pointer _M_first;
148 : _M_cur(__x), _M_first(*__y),
152 : _M_cur(), _M_first(), _M_last(), _M_node() { }
157 : _M_cur(__x._M_cur), _M_first(__x._M_first),
165 : _M_cur(__x._M_cur), _M_first(__x._M_first),
169 : _M_cur(__x._M_cur), _M_first(__x._M_first),
196 _M_cur = _M_first;
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
mt_allocator.h 209 _Block_record** _M_first;
299 _Block_record** _M_first;
726 if (__bin._M_first[__thread_id])
730 _Block_record* __block = __bin._M_first[__thread_id];
731 __bin._M_first[__thread_id] = __block->_M_next;
mt_allocator.h 209 _Block_record** _M_first;
299 _Block_record** _M_first;
726 if (__bin._M_first[__thread_id])
730 _Block_record* __block = __bin._M_first[__thread_id];
731 __bin._M_first[__thread_id] = __block->_M_next;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
mt_allocator.h 207 _Block_record** _M_first;
297 _Block_record** _M_first;
724 if (__bin._M_first[__thread_id])
728 _Block_record* __block = __bin._M_first[__thread_id];
729 __bin._M_first[__thread_id] = __block->_M_next;
mt_allocator.h 207 _Block_record** _M_first;
297 _Block_record** _M_first;
724 if (__bin._M_first[__thread_id])
728 _Block_record* __block = __bin._M_first[__thread_id];
729 __bin._M_first[__thread_id] = __block->_M_next;

Completed in 63 milliseconds