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

  /src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
merge.h 112 _ValueType1;
124 _ValueType1 __element1 = *__begin1;
algobase.h 380 typedef typename _TraitsType1::value_type _ValueType1;
386 _EqualFromLess<_ValueType1, _ValueType2, _Predicate>
432 typedef typename _TraitsType1::value_type _ValueType1;
438 typedef __gnu_parallel::_Less<_ValueType1, _ValueType2> _LessType;
algo.h 417 typedef typename std::iterator_traits<_IIter1>::value_type _ValueType1;
422 __gnu_parallel::_Less<_ValueType1, _ValueType2>(),
511 typedef typename std::iterator_traits<_IIter1>::value_type _ValueType1;
516 __gnu_parallel::_Less<_ValueType1, _ValueType2>(),
605 typedef typename std::iterator_traits<_IIter1>::value_type _ValueType1;
610 __gnu_parallel::_Less<_ValueType1, _ValueType2>(),
697 typedef typename std::iterator_traits<_IIter1>::value_type _ValueType1;
702 __gnu_parallel::_Less<_ValueType1, _ValueType2>(),
963 typedef typename std::iterator_traits<_RAIter1>::value_type _ValueType1;
972 __gnu_parallel::_EqualTo<_ValueType1, _ValueType2>())
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
glue_memory_impl.h 27 typedef typename iterator_traits<_InputIterator>::value_type _ValueType1;
37 std::integral_constant < bool, std::is_trivial<_ValueType1>::value&& std::is_trivial<_ValueType2>::value > (),
58 typedef typename iterator_traits<_InputIterator>::value_type _ValueType1;
68 std::integral_constant < bool, std::is_trivial<_ValueType1>::value&& std::is_trivial<_ValueType2>::value > (),
91 typedef typename iterator_traits<_InputIterator>::value_type _ValueType1;
101 std::integral_constant < bool, std::is_trivial<_ValueType1>::value&& std::is_trivial<_ValueType2>::value > (),
122 typedef typename iterator_traits<_InputIterator>::value_type _ValueType1;
132 std::integral_constant < bool, std::is_trivial<_ValueType1>::value&& std::is_trivial<_ValueType2>::value > (),
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
merge.h 112 _ValueType1;
124 _ValueType1 __element1 = *__begin1;
algobase.h 379 typedef typename _TraitsType1::value_type _ValueType1;
385 _EqualFromLess<_ValueType1, _ValueType2, _Predicate>
431 typedef typename _TraitsType1::value_type _ValueType1;
437 typedef __gnu_parallel::_Less<_ValueType1, _ValueType2> _LessType;
algo.h 417 typedef typename std::iterator_traits<_IIter1>::value_type _ValueType1;
422 __gnu_parallel::_Less<_ValueType1, _ValueType2>(),
511 typedef typename std::iterator_traits<_IIter1>::value_type _ValueType1;
516 __gnu_parallel::_Less<_ValueType1, _ValueType2>(),
605 typedef typename std::iterator_traits<_IIter1>::value_type _ValueType1;
610 __gnu_parallel::_Less<_ValueType1, _ValueType2>(),
697 typedef typename std::iterator_traits<_IIter1>::value_type _ValueType1;
702 __gnu_parallel::_Less<_ValueType1, _ValueType2>(),
963 typedef typename std::iterator_traits<_RAIter1>::value_type _ValueType1;
972 __gnu_parallel::_EqualTo<_ValueType1, _ValueType2>())
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/
glue_memory_impl.h 25 typedef typename iterator_traits<_InputIterator>::value_type _ValueType1;
36 std::integral_constant < bool, std::is_trivial<_ValueType1>::value&& std::is_trivial<_ValueType2>::value > (),
59 typedef typename iterator_traits<_InputIterator>::value_type _ValueType1;
70 std::integral_constant < bool, std::is_trivial<_ValueType1>::value&& std::is_trivial<_ValueType2>::value > (),
94 typedef typename iterator_traits<_InputIterator>::value_type _ValueType1;
105 std::integral_constant < bool, std::is_trivial<_ValueType1>::value&& std::is_trivial<_ValueType2>::value > (),
128 typedef typename iterator_traits<_InputIterator>::value_type _ValueType1;
139 std::integral_constant < bool, std::is_trivial<_ValueType1>::value&& std::is_trivial<_ValueType2>::value > (),
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/debug/
functions.h 318 _ValueType1;
322 typedef typename std::__are_same<_ValueType1, _ValueType2>::__type
336 _ValueType1;
340 typedef typename std::__are_same<_ValueType1, _ValueType2>::__type
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/debug/
functions.h 318 _ValueType1;
322 typedef typename std::__are_same<_ValueType1, _ValueType2>::__type
336 _ValueType1;
340 typedef typename std::__are_same<_ValueType1, _ValueType2>::__type
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
stl_algobase.h 123 _ValueType1;
124 _ValueType1 __tmp = *__a;
165 _ValueType1;
169 __glibcxx_function_requires(_ConvertibleConcept<_ValueType1,
172 _ValueType1>)
178 std::__iter_swap<__are_same<_ValueType1, _ValueType2>::__value
179 && __are_same<_ValueType1&, _ReferenceType1>::__value
1241 typedef typename iterator_traits<_II1>::value_type _ValueType1;
1242 const bool __simple = ((__is_integer<_ValueType1>::__value
1243 || __is_pointer<_ValueType1>::__value
    [all...]
ranges_algobase.h 158 using _ValueType1 = iter_value_t<_Iter1>;
160 = ((is_integral_v<_ValueType1> || is_pointer_v<_ValueType1>)
stl_uninitialized.h 167 _ValueType1;
171 // _ValueType1 must be trivially-copyable to use memmove, so don't
174 const bool __can_memmove = __is_trivial(_ValueType1);
ranges_algo.h 3260 using _ValueType1 = iter_value_t<_Iter1>;
3265 = (__is_memcmp_ordered_with<_ValueType1, _ValueType2>::__value
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
stl_algobase.h 120 _ValueType1;
121 _ValueType1 __tmp = *__a;
162 _ValueType1;
166 __glibcxx_function_requires(_ConvertibleConcept<_ValueType1,
169 _ValueType1>)
175 std::__iter_swap<__are_same<_ValueType1, _ValueType2>::__value
176 && __are_same<_ValueType1&, _ReferenceType1>::__value
1208 typedef typename iterator_traits<_II1>::value_type _ValueType1;
1209 const bool __simple = ((__is_integer<_ValueType1>::__value
1210 || __is_pointer<_ValueType1>::__value
    [all...]
ranges_algobase.h 108 using _ValueType1 = iter_value_t<_Iter1>;
110 = ((is_integral_v<_ValueType1> || is_pointer_v<_ValueType1>)
stl_uninitialized.h 167 _ValueType1;
171 // _ValueType1 must be trivially-copyable to use memmove, so don't
174 const bool __can_memmove = __is_trivial(_ValueType1);
ranges_algo.h 3331 using _ValueType1 = iter_value_t<_Iter1>;
3336 = (__is_memcmp_ordered_with<_ValueType1, _ValueType2>::__value

Completed in 53 milliseconds