Home | History | Annotate | Download | only in ext

Lines Matching defs:__d

102       _S_copy(_CharT* __d, const _CharT* __s, size_type __n)
105 traits_type::assign(*__d, *__s);
107 traits_type::copy(__d, __s, __n);
111 _S_move(_CharT* __d, const _CharT* __s, size_type __n)
114 traits_type::assign(*__d, *__s);
116 traits_type::move(__d, __s, __n);
120 _S_assign(_CharT* __d, size_type __n, _CharT __c)
123 traits_type::assign(*__d, __c);
125 traits_type::assign(__d, __n, __c);
167 const difference_type __d = difference_type(__n1 - __n2);
169 if (__d > __numeric_traits_integer<int>::__max)
171 else if (__d < __numeric_traits_integer<int>::__min)
174 return int(__d);