Home
last modified time | relevance | path

Searched refs:_M_access (Results 1 – 5 of 5) sorted by relevance

/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
Dstd_function.h87 void* _M_access() { return &_M_pod_data[0]; } in _GLIBCXX_VISIBILITY() function
88 const void* _M_access() const { return &_M_pod_data[0]; } in _GLIBCXX_VISIBILITY() function
92 _M_access() in _GLIBCXX_VISIBILITY() function
93 { return *static_cast<_Tp*>(_M_access()); } in _GLIBCXX_VISIBILITY()
97 _M_access() const in _GLIBCXX_VISIBILITY() function
98 { return *static_cast<const _Tp*>(_M_access()); } in _GLIBCXX_VISIBILITY()
154 __stored_locally? std::__addressof(__source._M_access<_Functor>()) in _GLIBCXX_VISIBILITY()
155 /* have stored a pointer */ : __source._M_access<_Functor*>(); in _GLIBCXX_VISIBILITY()
164 ::new (__dest._M_access()) _Functor(__source._M_access<_Functor>()); in _GLIBCXX_VISIBILITY()
172 __dest._M_access<_Functor*>() = in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr1/
Dfunctional1525 void* _M_access() { return &_M_pod_data[0]; }
1526 const void* _M_access() const { return &_M_pod_data[0]; }
1530 _M_access()
1531 { return *static_cast<_Tp*>(_M_access()); }
1535 _M_access() const
1536 { return *static_cast<const _Tp*>(_M_access()); }
1610 __stored_locally? std::__addressof(__source._M_access<_Functor>())
1611 /* have stored a pointer */ : __source._M_access<_Functor*>();
1620 new (__dest._M_access()) _Functor(__source._M_access<_Functor>());
1628 __dest._M_access<_Functor*>() =
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr1/
Dfunctional1534 void* _M_access() { return &_M_pod_data[0]; }
1535 const void* _M_access() const { return &_M_pod_data[0]; }
1539 _M_access()
1540 { return *static_cast<_Tp*>(_M_access()); }
1544 _M_access() const
1545 { return *static_cast<const _Tp*>(_M_access()); }
1619 __stored_locally? std::__addressof(__source._M_access<_Functor>())
1620 /* have stored a pointer */ : __source._M_access<_Functor*>();
1629 new (__dest._M_access()) _Functor(__source._M_access<_Functor>());
1637 __dest._M_access<_Functor*>() =
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/
Dfunctional1662 void* _M_access() { return &_M_pod_data[0]; }
1663 const void* _M_access() const { return &_M_pod_data[0]; }
1667 _M_access()
1668 { return *static_cast<_Tp*>(_M_access()); }
1672 _M_access() const
1673 { return *static_cast<const _Tp*>(_M_access()); }
1746 __stored_locally? std::__addressof(__source._M_access<_Functor>())
1747 /* have stored a pointer */ : __source._M_access<_Functor*>();
1756 new (__dest._M_access()) _Functor(__source._M_access<_Functor>());
1764 __dest._M_access<_Functor*>() =
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/
Dvariant728 _M_access() const
739 _M_access(size_t __first_index, _Args... __rest_indices) const
740 { return _M_arr[__first_index]._M_access(__rest_indices...); }
1385 auto __func_ptr = __vtable._M_access(__variants.index()...);