HomeSort by: relevance | last modified time | path
    Searched refs:_M_comp (Results 1 - 12 of 12) sorted by relevancy

  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
predefined_ops.h 147 _Compare _M_comp;
151 : _M_comp(_GLIBCXX_MOVE(__comp))
158 { return bool(_M_comp(*__it1, *__it2)); }
170 _Compare _M_comp;
175 : _M_comp(_GLIBCXX_MOVE(__comp))
181 : _M_comp(__comp._M_comp)
188 : _M_comp(std::move(__comp._M_comp))
196 { return bool(_M_comp(*__it, __val));
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
predefined_ops.h 147 _Compare _M_comp;
151 : _M_comp(_GLIBCXX_MOVE(__comp))
158 { return bool(_M_comp(*__it1, *__it2)); }
170 _Compare _M_comp;
175 : _M_comp(_GLIBCXX_MOVE(__comp))
181 : _M_comp(__comp._M_comp)
188 : _M_comp(std::move(__comp._M_comp))
196 { return bool(_M_comp(*__it, __val));
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
set_operations.h 74 __symmetric_difference_func(_Compare __comp) : _M_comp(__comp) {}
76 _Compare _M_comp;
84 if (_M_comp(*__a, *__c))
90 else if (_M_comp(*__c, *__a))
112 if (_M_comp(*__a, *__c))
117 else if (_M_comp(*__c, *__a))
151 __difference_func(_Compare __comp) : _M_comp(__comp) {}
153 _Compare _M_comp;
161 if (_M_comp(*__a, *__c))
167 else if (_M_comp(*__c, *__a)
    [all...]
losertree.h 78 _Compare _M_comp;
95 : _M_comp(__comp)
174 using _Base::_M_comp;
194 && !_M_comp(_M_losers[__right]._M_key,
238 && ((_M_comp(_M_losers[__pos]._M_key, __key))
239 || (!_M_comp(__key, _M_losers[__pos]._M_key)
267 using _Base::_M_comp;
294 && !_M_comp(_M_losers[__right]._M_key,
338 && _M_comp(_M_losers[__pos]._M_key, __key)))
370 _Compare _M_comp;
    [all...]
multiseq_selection.h 58 _Compare& _M_comp;
61 _Lexicographic(_Compare& __comp) : _M_comp(__comp) { }
67 if (_M_comp(__p1.first, __p2.first))
70 if (_M_comp(__p2.first, __p1.first))
83 _Compare& _M_comp;
86 _LexicographicReverse(_Compare& __comp) : _M_comp(__comp) { }
92 if (_M_comp(__p2.first, __p1.first))
95 if (_M_comp(__p1.first, __p2.first))
base.h 160 _Compare& _M_comp;
163 _EqualFromLess(_Compare& __comp) : _M_comp(__comp) { }
166 { return !_M_comp(__a, __b) && !_M_comp(__b, __a); }
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
set_operations.h 74 __symmetric_difference_func(_Compare __comp) : _M_comp(__comp) {}
76 _Compare _M_comp;
84 if (_M_comp(*__a, *__c))
90 else if (_M_comp(*__c, *__a))
112 if (_M_comp(*__a, *__c))
117 else if (_M_comp(*__c, *__a))
151 __difference_func(_Compare __comp) : _M_comp(__comp) {}
153 _Compare _M_comp;
161 if (_M_comp(*__a, *__c))
167 else if (_M_comp(*__c, *__a)
    [all...]
losertree.h 78 _Compare _M_comp;
95 : _M_comp(__comp)
174 using _Base::_M_comp;
194 && !_M_comp(_M_losers[__right]._M_key,
238 && ((_M_comp(_M_losers[__pos]._M_key, __key))
239 || (!_M_comp(__key, _M_losers[__pos]._M_key)
267 using _Base::_M_comp;
294 && !_M_comp(_M_losers[__right]._M_key,
338 && _M_comp(_M_losers[__pos]._M_key, __key)))
370 _Compare _M_comp;
    [all...]
multiseq_selection.h 58 _Compare& _M_comp;
61 _Lexicographic(_Compare& __comp) : _M_comp(__comp) { }
67 if (_M_comp(__p1.first, __p2.first))
70 if (_M_comp(__p2.first, __p1.first))
83 _Compare& _M_comp;
86 _LexicographicReverse(_Compare& __comp) : _M_comp(__comp) { }
92 if (_M_comp(__p2.first, __p1.first))
95 if (_M_comp(__p1.first, __p2.first))
base.h 160 _Compare& _M_comp;
163 _EqualFromLess(_Compare& __comp) : _M_comp(__comp) { }
166 { return !_M_comp(__a, __b) && !_M_comp(__b, __a); }
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
parallel_backend_tbb.h 735 _Compare _M_comp;
838 _M_comp(__comp), _M_leaf_merge(__leaf_merge), _M_nsort(__nsort), _root(__root),
880 _PSTL_ASSERT(std::is_sorted(_M_x_beg + _M_xs, _M_x_beg + _M_xe, _M_comp));
881 _PSTL_ASSERT(std::is_sorted(_M_x_beg + _M_ys, _M_x_beg + _M_ye, _M_comp));
882 return !_M_comp(*(_M_x_beg + _M_ys), *(_M_x_beg + _M_xe - 1));
885 _PSTL_ASSERT(std::is_sorted(_M_z_beg + _M_xs, _M_z_beg + _M_xe, _M_comp));
886 _PSTL_ASSERT(std::is_sorted(_M_z_beg + _M_ys, _M_z_beg + _M_ye, _M_comp));
887 return !_M_comp(*(_M_z_beg + _M_zs + __nx), *(_M_z_beg + _M_zs + __nx - 1));
939 _M_comp, __move_value_construct(), __move_value_construct(), __move_range_construct(),
948 _PSTL_ASSERT(is_partial() || std::is_sorted(_M_z_beg + _M_xs, _M_z_beg + _M_xe, _M_comp));
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/
parallel_backend_tbb.h 725 _Compare _M_comp;
828 _M_comp(__comp), _M_leaf_merge(__leaf_merge), _M_nsort(__nsort), _root(__root),
870 _PSTL_ASSERT(std::is_sorted(_M_x_beg + _M_xs, _M_x_beg + _M_xe, _M_comp));
871 _PSTL_ASSERT(std::is_sorted(_M_x_beg + _M_ys, _M_x_beg + _M_ye, _M_comp));
872 return !_M_comp(*(_M_x_beg + _M_ys), *(_M_x_beg + _M_xe - 1));
875 _PSTL_ASSERT(std::is_sorted(_M_z_beg + _M_xs, _M_z_beg + _M_xe, _M_comp));
876 _PSTL_ASSERT(std::is_sorted(_M_z_beg + _M_ys, _M_z_beg + _M_ye, _M_comp));
877 return !_M_comp(*(_M_z_beg + _M_zs + __nx), *(_M_z_beg + _M_zs + __nx - 1));
929 _M_comp, __move_value_construct(), __move_value_construct(), __move_range_construct(),
938 _PSTL_ASSERT(is_partial() || std::is_sorted(_M_z_beg + _M_xs, _M_z_beg + _M_xe, _M_comp));
    [all...]

Completed in 39 milliseconds