39 #pragma GCC system_header 
   45 #if __cplusplus >= 201103L 
   50 namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
 
   52 _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
   65   template<
typename _Tp> 
 
   70       typedef _Tp element_type;
 
   79       set(element_type* __arg) 
 
   85       { 
return (_M_value < __rarg._M_value); }
 
   89       { 
return (_M_value == __rarg._M_value); }
 
   92       element_type* _M_value;
 
  108   template<
typename _Tp> 
 
  112       typedef _Tp element_type;
 
  120           return reinterpret_cast<_Tp*
>(
reinterpret_cast<_UIntPtrType
>(
this)
 
  130           _M_diff = 
reinterpret_cast<_UIntPtrType
>(__arg) 
 
  131                     - reinterpret_cast<_UIntPtrType>(
this);
 
  137       { 
return (reinterpret_cast<_UIntPtrType>(this->
get())
 
  138         < reinterpret_cast<_UIntPtrType>(__rarg.get())); }
 
  142       { 
return (reinterpret_cast<_UIntPtrType>(this->
get())
 
  143         == reinterpret_cast<_UIntPtrType>(__rarg.get())); }
 
  146 #ifdef _GLIBCXX_USE_LONG_LONG 
  147       typedef __gnu_cxx::__conditional_type<
 
  148      (
sizeof(
unsigned long) >= 
sizeof(
void*)),
 
  149      unsigned long, 
unsigned long long>::__type _UIntPtrType;
 
  151       typedef unsigned long _UIntPtrType;
 
  153       _UIntPtrType _M_diff;
 
  160   template<
typename _Tp> 
 
  164       typedef const _Tp element_type;
 
  172           return reinterpret_cast<const _Tp*
> 
  173           (
reinterpret_cast<_UIntPtrType
>(
this) + _M_diff);
 
  177       set(
const _Tp* __arg)
 
  182           _M_diff = 
reinterpret_cast<_UIntPtrType
>(__arg) 
 
  183                     - reinterpret_cast<_UIntPtrType>(
this);
 
  189       { 
return (reinterpret_cast<_UIntPtrType>(this->
get())
 
  190         < reinterpret_cast<_UIntPtrType>(__rarg.get())); }
 
  194       { 
return (reinterpret_cast<_UIntPtrType>(this->
get())
 
  195         == reinterpret_cast<_UIntPtrType>(__rarg.get())); }
 
  198 #ifdef _GLIBCXX_USE_LONG_LONG 
  199       typedef __gnu_cxx::__conditional_type<
 
  200      (
sizeof(
unsigned long) >= 
sizeof(
void*)),
 
  201      unsigned long, 
unsigned long long>::__type _UIntPtrType;
 
  203       typedef unsigned long _UIntPtrType;
 
  205        _UIntPtrType _M_diff;
 
  215   template<
typename _Tp>
 
  216     struct _Reference_type 
 
  217     { 
typedef _Tp& reference; };
 
  220     struct _Reference_type<void> 
 
  221     { 
typedef _Invalid_type& reference; };
 
  224     struct _Reference_type<const void> 
 
  225     { 
typedef const _Invalid_type& reference; };
 
  228     struct _Reference_type<volatile void> 
 
  229     { 
typedef volatile _Invalid_type&  reference; };
 
  232     struct _Reference_type<volatile const void> 
 
  233     { 
typedef const volatile _Invalid_type&  reference; };
 
  240   template<
typename _Tp> 
 
  242     { 
typedef _Tp type; };
 
  244   template<
typename _Tp> 
 
  246     { 
typedef _Tp type; };
 
  280   template<
typename _Storage_policy>
 
  284       typedef typename _Storage_policy::element_type element_type;
 
  288       typedef typename _Unqualified_type<element_type>::type value_type;
 
  289       typedef std::ptrdiff_t                                 difference_type;
 
  291       typedef typename _Reference_type<element_type>::reference  reference;
 
  299       { _Storage_policy::set(__arg); }
 
  303       { _Storage_policy::set(__arg.get()); }
 
  306       template<
typename _Up>
 
  308         { _Storage_policy::set(__arg); }
 
  312       template<
typename _Up>
 
  314         { _Storage_policy::set(__arg.get()); }
 
  323         _Storage_policy::set(__arg.get()); 
 
  327       template<
typename _Up>
 
  331           _Storage_policy::set(__arg.get()); 
 
  335       template<
typename _Up>
 
  337         operator=(_Up* __arg)
 
  339           _Storage_policy::set(__arg); 
 
  346       { 
return *(_Storage_policy::get()); }
 
  351       { 
return _Storage_policy::get(); }
 
  355       operator[](std::ptrdiff_t __index)
 const 
  356       { 
return _Storage_policy::get()[__index]; }
 
  363       operator __unspecified_bool_type()
 const 
  365         return _Storage_policy::get() == 0 ? 0 : 
 
  366                          &_Pointer_adapter::operator->; 
 
  372       { 
return (_Storage_policy::get() == 0); }
 
  375       inline friend std::ptrdiff_t 
 
  377       { 
return (__lhs.get() - __rhs); }
 
  379       inline friend std::ptrdiff_t 
 
  381       { 
return (__lhs - __rhs.get()); }
 
  383       template<
typename _Up>
 
  384         inline friend std::ptrdiff_t 
 
  386         { 
return (__lhs.get() - __rhs); }
 
  388       template<
typename _Up>
 
  389         inline friend std::ptrdiff_t 
 
  391         { 
return (__lhs - __rhs.get()); }
 
  393       template<
typename _Up>
 
  394         inline std::ptrdiff_t 
 
  396         { 
return (_Storage_policy::get() - __rhs.get()); }
 
  405 #define _CXX_POINTER_ARITH_OPERATOR_SET(INT_TYPE) \ 
  406       inline friend _Pointer_adapter \ 
  407       operator+(const _Pointer_adapter& __lhs, INT_TYPE __offset) \ 
  408       { return _Pointer_adapter(__lhs.get() + __offset); } \ 
  410       inline friend _Pointer_adapter \ 
  411       operator+(INT_TYPE __offset, const _Pointer_adapter& __rhs) \ 
  412       { return _Pointer_adapter(__rhs.get() + __offset); } \ 
  414       inline friend _Pointer_adapter \ 
  415       operator-(const _Pointer_adapter& __lhs, INT_TYPE __offset) \ 
  416       { return _Pointer_adapter(__lhs.get() - __offset); } \ 
  418       inline _Pointer_adapter& \ 
  419       operator+=(INT_TYPE __offset) \ 
  421         _Storage_policy::set(_Storage_policy::get() + __offset); \ 
  425       inline _Pointer_adapter& \ 
  426       operator-=(INT_TYPE __offset) \ 
  428         _Storage_policy::set(_Storage_policy::get() - __offset); \ 
  431 // END of _CXX_POINTER_ARITH_OPERATOR_SET macro 
  434       _CXX_POINTER_ARITH_OPERATOR_SET(
short);
 
  435       _CXX_POINTER_ARITH_OPERATOR_SET(
unsigned short);
 
  436       _CXX_POINTER_ARITH_OPERATOR_SET(
int);
 
  437       _CXX_POINTER_ARITH_OPERATOR_SET(
unsigned int);
 
  438       _CXX_POINTER_ARITH_OPERATOR_SET(
long);
 
  439       _CXX_POINTER_ARITH_OPERATOR_SET(
unsigned long);
 
  445         _Storage_policy::set(_Storage_policy::get() + 1); 
 
  453         _Storage_policy::set(_Storage_policy::get() + 1);
 
  460         _Storage_policy::set(_Storage_policy::get() - 1); 
 
  468         _Storage_policy::set(_Storage_policy::get() - 1);
 
  475 #define _GCC_CXX_POINTER_COMPARISON_OPERATION_SET(OPERATOR) \ 
  476   template<typename _Tp1, typename _Tp2> \ 
  478     operator OPERATOR(const _Pointer_adapter<_Tp1>& __lhs, _Tp2 __rhs) \ 
  479     { return __lhs.get() OPERATOR __rhs; } \ 
  481   template<typename _Tp1, typename _Tp2> \ 
  483     operator OPERATOR(_Tp1 __lhs, const _Pointer_adapter<_Tp2>& __rhs) \ 
  484     { return __lhs OPERATOR __rhs.get(); } \ 
  486   template<typename _Tp1, typename _Tp2> \ 
  488     operator OPERATOR(const _Pointer_adapter<_Tp1>& __lhs, \ 
  489                               const _Pointer_adapter<_Tp2>& __rhs) \ 
  490     { return __lhs.get() OPERATOR __rhs.get(); } \ 
  492 // End GCC_CXX_POINTER_COMPARISON_OPERATION_SET Macro 
  495   _GCC_CXX_POINTER_COMPARISON_OPERATION_SET(==)
 
  496   _GCC_CXX_POINTER_COMPARISON_OPERATION_SET(!=)
 
  497   _GCC_CXX_POINTER_COMPARISON_OPERATION_SET(<)
 
  498   _GCC_CXX_POINTER_COMPARISON_OPERATION_SET(<=)
 
  499   _GCC_CXX_POINTER_COMPARISON_OPERATION_SET(>)
 
  500   _GCC_CXX_POINTER_COMPARISON_OPERATION_SET(>=)
 
  503   template<typename _Tp>
 
  506     { 
return __lhs.get() == 
reinterpret_cast<void*
>(__rhs); } 
 
  508   template<
typename _Tp>
 
  510     operator==(
int __lhs, 
const _Pointer_adapter<_Tp>& __rhs)
 
  511     { 
return __rhs.get() == 
reinterpret_cast<void*
>(__lhs); } 
 
  513   template<
typename _Tp>
 
  515     operator!=(
const _Pointer_adapter<_Tp>& __lhs, 
int __rhs)
 
  516     { 
return __lhs.get() != 
reinterpret_cast<void*
>(__rhs); } 
 
  518   template<
typename _Tp>
 
  520     operator!=(
int __lhs, 
const _Pointer_adapter<_Tp>& __rhs)
 
  521     { 
return __rhs.get() != 
reinterpret_cast<void*
>(__lhs); } 
 
  527   template<
typename _Tp>
 
  531     { 
return __lhs._Tp::operator==(__rhs); }
 
  533   template<
typename _Tp>
 
  535     operator<=(const _Pointer_adapter<_Tp>& __lhs, 
 
  536                const _Pointer_adapter<_Tp>& __rhs)
 
  537     { 
return __lhs._Tp::operator<(__rhs) || __lhs._Tp::operator==(__rhs); }
 
  539   template<
typename _Tp>
 
  541     operator!=(
const _Pointer_adapter<_Tp>& __lhs, 
 
  542                const _Pointer_adapter<_Tp>& __rhs)
 
  543     { 
return !(__lhs._Tp::operator==(__rhs)); }
 
  545   template<
typename _Tp>
 
  547     operator>(
const _Pointer_adapter<_Tp>& __lhs, 
 
  548               const _Pointer_adapter<_Tp>& __rhs)
 
  549     { 
return !(__lhs._Tp::operator<(__rhs) || __lhs._Tp::operator==(__rhs)); }
 
  551   template<
typename _Tp>
 
  553     operator>=(
const _Pointer_adapter<_Tp>& __lhs, 
 
  554                const _Pointer_adapter<_Tp>& __rhs)
 
  555     { 
return !(__lhs._Tp::operator<(__rhs)); }
 
  557   template<
typename _CharT, 
typename _Traits, 
typename _StoreT>
 
  558     inline std::basic_ostream<_CharT, _Traits>&
 
  559     operator<<(std::basic_ostream<_CharT, _Traits>& __os, 
 
  560                const _Pointer_adapter<_StoreT>& __p)
 
  561     { 
return (__os << __p.get()); }
 
  563 _GLIBCXX_END_NAMESPACE_VERSION
 
  566 #if __cplusplus >= 201103L 
  567 namespace std _GLIBCXX_VISIBILITY(default)
 
  569 _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
  571   template<
typename _Storage_policy>
 
  572     struct pointer_traits<
__gnu_cxx::_Pointer_adapter<_Storage_policy>>
 
  581       template<
typename _Up>
 
  583     typename pointer_traits<_Storage_policy>::template rebind<_Up>>;
 
  585       static pointer pointer_to(
typename pointer::reference __r) noexcept
 
  589 _GLIBCXX_END_NAMESPACE_VERSION
 
_Tp * addressof(_Tp &__r) noexcept
Returns the actual address of the object or function referenced by r, even in the presence of an over...
GNU extensions for public use. 
__ptrtr_diff_type< _Ptr >::__type difference_type
Type used to represent the difference between two pointers. 
__ptrtr_elt_type< _Ptr >::__type element_type
The type pointed to. 
A storage policy for use with _Pointer_adapter<> which stores the pointer's address as an offset valu...
ISO C++ entities toplevel namespace is std. 
_Ptr pointer
The pointer type. 
bool operator>=(const basic_string< _CharT, _Traits, _Alloc > &__lhs, const basic_string< _CharT, _Traits, _Alloc > &__rhs)
Test if string doesn't precede string. 
Random-access iterators support a superset of bidirectional iterator operations. 
bool operator>(const basic_string< _CharT, _Traits, _Alloc > &__lhs, const basic_string< _CharT, _Traits, _Alloc > &__rhs)
Test if string follows string. 
A storage policy for use with _Pointer_adapter<> which yields a standard pointer. ...