Home | History | Annotate | Download | only in ext

Lines Matching defs:__d

105       _S_copy(_CharT* __d, const _CharT* __s, size_type __n)
108 traits_type::assign(*__d, *__s);
110 traits_type::copy(__d, __s, __n);
114 _S_move(_CharT* __d, const _CharT* __s, size_type __n)
117 traits_type::assign(*__d, *__s);
119 traits_type::move(__d, __s, __n);
123 _S_assign(_CharT* __d, size_type __n, _CharT __c)
126 traits_type::assign(*__d, __c);
128 traits_type::assign(__d, __n, __c);
170 const difference_type __d = difference_type(__n1 - __n2);
172 if (__d > __numeric_traits_integer<int>::__max)
174 else if (__d < __numeric_traits_integer<int>::__min)
177 return int(__d);