HomeSort by: relevance | last modified time | path
    Searched refs:_Base (Results 1 - 25 of 74) sorted by relevancy

1 2 3

  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
parse_numbers.h 48 template<unsigned _Base, char _Dig>
51 template<unsigned _Base>
52 struct _Digit<_Base, '0'> : integral_constant<unsigned, 0>
57 template<unsigned _Base>
58 struct _Digit<_Base, '1'> : integral_constant<unsigned, 1>
63 template<unsigned _Base, unsigned _Val>
66 static_assert(_Base > _Val, "invalid digit");
70 template<unsigned _Base>
71 struct _Digit<_Base, '2'> : _Digit_impl<_Base, 2
    [all...]
valarray_before.h 449 typedef _FunBase<_Dom, typename _Dom::value_type> _Base;
450 typedef typename _Base::value_type value_type;
453 _ValFunClos(const _Dom& __e, _Tp __f(_Tp)) : _Base(__e, __f) {}
459 typedef _FunBase<valarray<_Tp>, _Tp> _Base;
462 _ValFunClos(const valarray<_Tp>& __v, _Tp __f(_Tp)) : _Base(__v, __f) {}
469 typedef _FunBase<_Dom, const typename _Dom::value_type&> _Base;
470 typedef typename _Base::value_type value_type;
474 : _Base(__e, __f) {}
481 typedef _FunBase<valarray<_Tp>, const _Tp&> _Base;
485 : _Base(__v, __f) {
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
parse_numbers.h 48 template<unsigned _Base, char _Dig>
51 template<unsigned _Base>
52 struct _Digit<_Base, '0'> : integral_constant<unsigned, 0>
57 template<unsigned _Base>
58 struct _Digit<_Base, '1'> : integral_constant<unsigned, 1>
63 template<unsigned _Base, unsigned _Val>
66 static_assert(_Base > _Val, "invalid digit");
70 template<unsigned _Base>
71 struct _Digit<_Base, '2'> : _Digit_impl<_Base, 2
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
iterator.h 48 typedef std::pair<_Iterator1, _Iterator2> _Base;
62 : _Base(__first, __second) { }
68 ++_Base::first;
69 ++_Base::second;
76 { return _IteratorPair(_Base::first++, _Base::second++); }
82 --_Base::first;
83 --_Base::second;
90 { return _IteratorPair(_Base::first--, _Base::second--);
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
iterator.h 48 typedef std::pair<_Iterator1, _Iterator2> _Base;
62 : _Base(__first, __second) { }
68 ++_Base::first;
69 ++_Base::second;
76 { return _IteratorPair(_Base::first++, _Base::second++); }
82 --_Base::first;
83 --_Base::second;
90 { return _IteratorPair(_Base::first--, _Base::second--);
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
unordered_map.h 57 _Base;
60 typedef typename _Base::size_type size_type;
61 typedef typename _Base::hasher hasher;
62 typedef typename _Base::key_equal key_equal;
63 typedef typename _Base::allocator_type allocator_type;
70 : _Base(__n, __hf, __detail::_Mod_range_hashing(),
81 : _Base(__f, __l, __n, __hf, __detail::_Mod_range_hashing(),
108 _Base;
111 typedef typename _Base::size_type size_type;
112 typedef typename _Base::hasher hasher
    [all...]
unordered_set.h 57 _Base;
60 typedef typename _Base::size_type size_type;
61 typedef typename _Base::hasher hasher;
62 typedef typename _Base::key_equal key_equal;
63 typedef typename _Base::allocator_type allocator_type;
70 : _Base(__n, __hf, __detail::_Mod_range_hashing(),
81 : _Base(__f, __l, __n, __hf, __detail::_Mod_range_hashing(),
106 _Base;
109 typedef typename _Base::size_type size_type;
110 typedef typename _Base::hasher hasher
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
unordered_map.h 57 _Base;
60 typedef typename _Base::size_type size_type;
61 typedef typename _Base::hasher hasher;
62 typedef typename _Base::key_equal key_equal;
63 typedef typename _Base::allocator_type allocator_type;
70 : _Base(__n, __hf, __detail::_Mod_range_hashing(),
81 : _Base(__f, __l, __n, __hf, __detail::_Mod_range_hashing(),
108 _Base;
111 typedef typename _Base::size_type size_type;
112 typedef typename _Base::hasher hasher
    [all...]
unordered_set.h 57 _Base;
60 typedef typename _Base::size_type size_type;
61 typedef typename _Base::hasher hasher;
62 typedef typename _Base::key_equal key_equal;
63 typedef typename _Base::allocator_type allocator_type;
70 : _Base(__n, __hf, __detail::_Mod_range_hashing(),
81 : _Base(__f, __l, __n, __hf, __detail::_Mod_range_hashing(),
106 _Base;
109 typedef typename _Base::size_type size_type;
110 typedef typename _Base::hasher hasher
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/debug/
map.h 51 _Key, _Tp, _Compare, _Allocator> _Base;
55 typedef typename _Base::const_iterator _Base_const_iterator;
56 typedef typename _Base::iterator _Base_iterator;
62 // Reference wrapper for base class. Disambiguates map(const _Base&)
67 _Base_ref(const _Base& __r) : _M_ref(__r) { }
69 const _Base& _M_ref;
79 typedef typename _Base::reference reference;
80 typedef typename _Base::const_reference const_reference;
87 typedef typename _Base::size_type size_type;
88 typedef typename _Base::difference_type difference_type
    [all...]
multimap.h 51 _Key, _Tp, _Compare, _Allocator> _Base;
55 typedef typename _Base::const_iterator _Base_const_iterator;
56 typedef typename _Base::iterator _Base_iterator;
62 // Reference wrapper for base class. Disambiguates multimap(const _Base&)
67 _Base_ref(const _Base& __r) : _M_ref(__r) { }
69 const _Base& _M_ref;
79 typedef typename _Base::reference reference;
80 typedef typename _Base::const_reference const_reference;
87 typedef typename _Base::size_type size_type;
88 typedef typename _Base::difference_type difference_type
    [all...]
set.h 50 typedef _GLIBCXX_STD_C::set<_Key, _Compare, _Allocator> _Base;
54 typedef typename _Base::const_iterator _Base_const_iterator;
55 typedef typename _Base::iterator _Base_iterator;
61 // Reference wrapper for base class. Disambiguates set(const _Base&)
66 _Base_ref(const _Base& __r) : _M_ref(__r) { }
68 const _Base& _M_ref;
78 typedef typename _Base::reference reference;
79 typedef typename _Base::const_reference const_reference;
86 typedef typename _Base::size_type size_type;
87 typedef typename _Base::difference_type difference_type
    [all...]
multiset.h 50 typedef _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator> _Base;
54 typedef typename _Base::const_iterator _Base_const_iterator;
55 typedef typename _Base::iterator _Base_iterator;
61 // Reference wrapper for base class. Disambiguates multiset(const _Base&)
66 _Base_ref(const _Base& __r) : _M_ref(__r) { }
68 const _Base& _M_ref;
78 typedef typename _Base::reference reference;
79 typedef typename _Base::const_reference const_reference;
86 typedef typename _Base::size_type size_type;
87 typedef typename _Base::difference_type difference_type
    [all...]
safe_container.h 44 typedef _SafeBase<_SafeContainer> _Base;
65 _Base::_M_swap(__x);
105 _Base::_M_swap(__x);
110 _Base::_M_swap(__x);
128 _Base::_M_swap(__x);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/debug/
map.h 51 _Key, _Tp, _Compare, _Allocator> _Base;
55 typedef typename _Base::const_iterator _Base_const_iterator;
56 typedef typename _Base::iterator _Base_iterator;
62 // Reference wrapper for base class. Disambiguates map(const _Base&)
67 _Base_ref(const _Base& __r) : _M_ref(__r) { }
69 const _Base& _M_ref;
79 typedef typename _Base::reference reference;
80 typedef typename _Base::const_reference const_reference;
87 typedef typename _Base::size_type size_type;
88 typedef typename _Base::difference_type difference_type
    [all...]
multimap.h 51 _Key, _Tp, _Compare, _Allocator> _Base;
55 typedef typename _Base::const_iterator _Base_const_iterator;
56 typedef typename _Base::iterator _Base_iterator;
62 // Reference wrapper for base class. Disambiguates multimap(const _Base&)
67 _Base_ref(const _Base& __r) : _M_ref(__r) { }
69 const _Base& _M_ref;
79 typedef typename _Base::reference reference;
80 typedef typename _Base::const_reference const_reference;
87 typedef typename _Base::size_type size_type;
88 typedef typename _Base::difference_type difference_type
    [all...]
set.h 50 typedef _GLIBCXX_STD_C::set<_Key, _Compare, _Allocator> _Base;
54 typedef typename _Base::const_iterator _Base_const_iterator;
55 typedef typename _Base::iterator _Base_iterator;
61 // Reference wrapper for base class. Disambiguates set(const _Base&)
66 _Base_ref(const _Base& __r) : _M_ref(__r) { }
68 const _Base& _M_ref;
78 typedef typename _Base::reference reference;
79 typedef typename _Base::const_reference const_reference;
86 typedef typename _Base::size_type size_type;
87 typedef typename _Base::difference_type difference_type
    [all...]
multiset.h 50 typedef _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator> _Base;
54 typedef typename _Base::const_iterator _Base_const_iterator;
55 typedef typename _Base::iterator _Base_iterator;
61 // Reference wrapper for base class. Disambiguates multiset(const _Base&)
66 _Base_ref(const _Base& __r) : _M_ref(__r) { }
68 const _Base& _M_ref;
78 typedef typename _Base::reference reference;
79 typedef typename _Base::const_reference const_reference;
86 typedef typename _Base::size_type size_type;
87 typedef typename _Base::difference_type difference_type
    [all...]
safe_container.h 44 typedef _SafeBase<_SafeContainer> _Base;
70 _Base::_M_swap(__x);
118 _Base::_M_swap(__x);
123 _Base::_M_swap(__x);
142 _Base::_M_swap(__x);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/profile/
multiset.h 46 typedef _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator> _Base;
48 typedef typename _Base::iterator _Base_iterator;
49 typedef typename _Base::const_iterator _Base_const_iterator;
58 typedef typename _Base::reference reference;
59 typedef typename _Base::const_reference const_reference;
68 typedef typename _Base::size_type size_type;
69 typedef typename _Base::difference_type difference_type;
75 : _Base() { }
77 : _Base(__x) { }
88 : _Base(__comp, __a) {
    [all...]
set.h 46 typedef _GLIBCXX_STD_C::set<_Key, _Compare, _Allocator> _Base;
48 typedef typename _Base::iterator _Base_iterator;
49 typedef typename _Base::const_iterator _Base_const_iterator;
57 typedef typename _Base::reference reference;
58 typedef typename _Base::const_reference const_reference;
66 typedef typename _Base::size_type size_type;
67 typedef typename _Base::difference_type difference_type;
72 : _Base() { }
74 : _Base(__x) { }
85 : _Base(__comp, __a) {
    [all...]
map.h 45 typedef _GLIBCXX_STD_C::map<_Key, _Tp, _Compare, _Allocator> _Base;
47 typedef typename _Base::iterator _Base_iterator;
48 typedef typename _Base::const_iterator _Base_const_iterator;
54 typedef typename _Base::value_type value_type;
56 typedef typename _Base::reference reference;
57 typedef typename _Base::const_reference const_reference;
65 typedef typename _Base::size_type size_type;
66 typedef typename _Base::difference_type difference_type;
72 : _Base() { }
74 : _Base(__x) {
    [all...]
multimap.h 46 typedef _GLIBCXX_STD_C::multimap<_Key, _Tp, _Compare, _Allocator> _Base;
48 typedef typename _Base::iterator _Base_iterator;
49 typedef typename _Base::const_iterator _Base_const_iterator;
57 typedef typename _Base::reference reference;
58 typedef typename _Base::const_reference const_reference;
67 typedef typename _Base::size_type size_type;
68 typedef typename _Base::difference_type difference_type;
74 : _Base() { }
76 : _Base(__x) { }
87 : _Base(__comp, __a) {
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/
simd_ppc.h 41 using _Base = _SimdImplBuiltin<_Abi>;
53 __x = _Base::_S_bit_shift_left(__x, __y);
64 __x = _Base::_S_bit_shift_left(__x, __y);
84 & _Base::_S_bit_shift_right(__x, __y)._M_data;
87 _Base::_S_masked_assign(_SimdWrapper<_Tp, _Np>(__y._M_data
90 return _Base::_S_bit_shift_right(__x, __y);
94 return _Base::_S_bit_shift_right(__x, __y);
109 return _Base::_S_bit_shift_right(__x, __nbits - 1);
112 return _Base::_S_bit_shift_right(__x, __y);
123 using _Base = _MaskImplBuiltin<_Abi>
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
simd_ppc.h 41 using _Base = _SimdImplBuiltin<_Abi>;
53 __x = _Base::_S_bit_shift_left(__x, __y);
64 __x = _Base::_S_bit_shift_left(__x, __y);
84 & _Base::_S_bit_shift_right(__x, __y)._M_data;
87 _Base::_S_masked_assign(_SimdWrapper<_Tp, _Np>(__y._M_data
90 return _Base::_S_bit_shift_right(__x, __y);
94 return _Base::_S_bit_shift_right(__x, __y);
109 return _Base::_S_bit_shift_right(__x, __nbits - 1);
112 return _Base::_S_bit_shift_right(__x, __y);
123 using _Base = _MaskImplBuiltin<_Abi>
    [all...]

Completed in 47 milliseconds

1 2 3