HomeSort by: relevance | last modified time | path
    Searched defs:__d (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
stl_iterator_base_funcs.h 223 typename iterator_traits<_InputIterator>::difference_type __d = __n; local
224 std::__advance(__i, __d, std::__iterator_category(__i));
atomic_futex.h 173 auto __d = __atime.time_since_epoch(); local
174 if (__d < __d.zero()) [[__unlikely__]]
176 auto __s = chrono::duration_cast<chrono::seconds>(__d);
177 auto __ns = chrono::duration_cast<chrono::nanoseconds>(__d - __s);
188 auto __d = __atime.time_since_epoch(); local
189 if (__d < __d.zero()) [[__unlikely__]]
191 auto __s = chrono::duration_cast<chrono::seconds>(__d);
192 auto __ns = chrono::duration_cast<chrono::nanoseconds>(__d - __s)
    [all...]
ranges_uninitialized.h 275 auto __d = __ilast - __ifirst; local
276 if (auto __d2 = __olast - __ofirst; __d2 < __d)
277 __d = static_cast<iter_difference_t<_Iter>>(__d2);
278 return ranges::copy_n(std::move(__ifirst), __d, __ofirst);
323 if (auto __d = __olast - __ofirst; __d < __n)
324 __n = static_cast<iter_difference_t<_Iter>>(__d);
362 auto __d = __ilast - __ifirst; local
363 if (auto __d2 = __olast - __ofirst; __d2 < __d)
364 __d = static_cast<iter_difference_t<_Iter>>(__d2)
    [all...]
ranges_util.h 414 auto __d = __n - ranges::advance(_M_begin, __n, _M_end); local
416 _M_size._M_size -= __detail::__to_unsigned_like(__d);
chrono.h 184 __cast(const duration<_Rep, _Period>& __d)
187 return _ToDur(static_cast<__to_rep>(static_cast<_CR>(__d.count())
198 __cast(const duration<_Rep, _Period>& __d)
201 return _ToDur(static_cast<__to_rep>(__d.count()));
210 __cast(const duration<_Rep, _Period>& __d)
214 static_cast<_CR>(__d.count()) / static_cast<_CR>(_CF::den)));
223 __cast(const duration<_Rep, _Period>& __d)
227 static_cast<_CR>(__d.count()) * static_cast<_CR>(_CF::num)));
268 * @param __d A duration.
269 * @return The value of `__d` converted to type `_ToDur`
1001 duration __d; member in class:chrono::time_point
    [all...]
basic_string.h 430 _S_copy(_CharT* __d, const _CharT* __s, size_type __n)
433 traits_type::assign(*__d, *__s);
435 traits_type::copy(__d, __s, __n);
440 _S_move(_CharT* __d, const _CharT* __s, size_type __n)
443 traits_type::assign(*__d, *__s);
445 traits_type::move(__d, __s, __n);
450 _S_assign(_CharT* __d, size_type __n, _CharT __c)
453 traits_type::assign(*__d, __c);
455 traits_type::assign(__d, __n, __c);
495 const difference_type __d = difference_type(__n1 - __n2) local
4211 double __d = std::stod(__str, __idx); local
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
stl_iterator_base_funcs.h 221 typename iterator_traits<_InputIterator>::difference_type __d = __n; local
222 std::__advance(__i, __d, std::__iterator_category(__i));
ranges_uninitialized.h 323 auto __d = __olast - __ofirst; local
324 return ranges::copy_n(std::move(__ifirst), std::min(__n, __d),
414 auto __d = __olast - __ofirst; local
417 std::min(__n, __d), __ofirst);
ranges_util.h 375 auto __d = __n - ranges::advance(_M_begin, __n, _M_end); local
377 _M_size._M_size -= __detail::__to_unsigned_like(__d);
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
snprintf_lite.cc 93 char *__d = __buf; local
95 const char *const __limit = __d + __bufsize - 1; // Leave space for NUL.
97 while (__s[0] != '\0' && __d < __limit)
111 while (__v[0] != '\0' && __d < __limit)
112 *__d++ = *__v++;
116 __throw_insufficient_space(__buf, __d);
125 const int __len = __concat_size_t(__d, __limit - __d,
128 __d += __len;
131 __throw_insufficient_space(__buf, __d);
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
codecvt.cc 107 size_t __d = static_cast<size_t>(__end - __from); local
108 return std::min(__max, __d);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
snprintf_lite.cc 93 char *__d = __buf; local
95 const char *const __limit = __d + __bufsize - 1; // Leave space for NUL.
97 while (__s[0] != '\0' && __d < __limit)
111 while (__v[0] != '\0' && __d < __limit)
112 *__d++ = *__v++;
116 __throw_insufficient_space(__buf, __d);
125 const int __len = __concat_size_t(__d, __limit - __d,
128 __d += __len;
131 __throw_insufficient_space(__buf, __d);
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
codecvt.cc 107 size_t __d = static_cast<size_t>(__end - __from); local
108 return std::min(__max, __d);
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/generic/
c_locale.cc 95 double __d = strtod(__s, &__sanity); local
96 __v = static_cast<float>(__d);
107 if (fabs(__d) > numeric_limits<float>::max())
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
vstring_util.h 109 _S_copy(_CharT* __d, const _CharT* __s, size_type __n)
112 traits_type::assign(*__d, *__s);
114 traits_type::copy(__d, __s, __n);
118 _S_move(_CharT* __d, const _CharT* __s, size_type __n)
121 traits_type::assign(*__d, *__s);
123 traits_type::move(__d, __s, __n);
127 _S_assign(_CharT* __d, size_type __n, _CharT __c)
130 traits_type::assign(*__d, __c);
132 traits_type::assign(__d, __n, __c);
174 const difference_type __d = difference_type(__n1 - __n2) local
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/generic/
c_locale.cc 95 double __d = strtod(__s, &__sanity); local
96 __v = static_cast<float>(__d);
107 if (fabs(__d) > numeric_limits<float>::max())
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
vstring_util.h 107 _S_copy(_CharT* __d, const _CharT* __s, size_type __n)
110 traits_type::assign(*__d, *__s);
112 traits_type::copy(__d, __s, __n);
116 _S_move(_CharT* __d, const _CharT* __s, size_type __n)
119 traits_type::assign(*__d, *__s);
121 traits_type::move(__d, __s, __n);
125 _S_assign(_CharT* __d, size_type __n, _CharT __c)
128 traits_type::assign(*__d, __c);
130 traits_type::assign(__d, __n, __c);
172 const difference_type __d = difference_type(__n1 - __n2) local
    [all...]
  /src/sys/arch/alpha/include/
fenv.h 66 double __d; member in union:__fpcr
87 __mf_fpcr(&__r.__d);
89 __mt_fpcr(__r.__d);
100 __mf_fpcr(&__r.__d);
115 __mf_fpcr(&__r.__d);
118 __mt_fpcr(__r.__d);
144 __mf_fpcr(&__r.__d);
158 __mf_fpcr(&__r.__d);
170 __mf_fpcr(&__r.__d);
173 __mt_fpcr(__r.__d);
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/cpu/i486/opt/bits/
opt_random.h 89 __m128d __d; member in union:__anon14644
178 __x = _mm_sub_pd(__v.__d, __three);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/cpu/i486/opt/bits/
opt_random.h 89 __m128d __d; member in union:__anon17042
178 __x = _mm_sub_pd(__v.__d, __three);
  /src/sys/arch/powerpc/include/
fenv.h 140 double __d; member in union:__fpscr
159 __mffs(&__r.__d);
161 __mtfsf(__r.__d);
170 __mffs(&__r.__d);
182 __mffs(&__r.__d);
185 __mtfsf(__r.__d);
196 __mffs(&__r.__d);
198 __mtfsf(__r.__d);
207 __mffs(&__r.__d);
216 __mffs(&__r.__d);
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
random_shuffle.h 130 _DRSSorterPU<_RAIter, _RandomNumberGenerator>* __d = &__pus[__iam]; local
131 _DRandomShufflingGlobalData<_RAIter>* __sd = __d->_M_sd;
139 _ValueType** __temporaries = new _ValueType*[__d->_M_num_threads];
146 _RandomNumber __rng(__d->_M_seed);
165 // Sum up bins, __sd->_M_dist[__s + 1][__d->_M_num_threads] now
170 + __d->_M_num_threads + 1,
177 for (_BinIndex __s = 0; __s < __d->_M_bins_begin; ++__s)
178 __global_offset += __sd->_M_dist[__s + 1][__d->_M_num_threads];
182 for (_BinIndex __s = __d->_M_bins_begin; __s < __d->__bins_end; ++__s
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
random_shuffle.h 130 _DRSSorterPU<_RAIter, _RandomNumberGenerator>* __d = &__pus[__iam]; local
131 _DRandomShufflingGlobalData<_RAIter>* __sd = __d->_M_sd;
139 _ValueType** __temporaries = new _ValueType*[__d->_M_num_threads];
146 _RandomNumber __rng(__d->_M_seed);
165 // Sum up bins, __sd->_M_dist[__s + 1][__d->_M_num_threads] now
170 + __d->_M_num_threads + 1,
177 for (_BinIndex __s = 0; __s < __d->_M_bins_begin; ++__s)
178 __global_offset += __sd->_M_dist[__s + 1][__d->_M_num_threads];
182 for (_BinIndex __s = __d->_M_bins_begin; __s < __d->__bins_end; ++__s
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/arm/
arm_acle.h 793 uint32_t __d; local
795 __d = __crc32w (__crc32w (__a, __b & 0xffffffffULL), __b >> 32);
796 return __d;
822 uint32_t __d; local
824 __d = __crc32cw (__crc32cw (__a, __b & 0xffffffffULL), __b >> 32);
825 return __d;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
simd_x86_conversions.h 313 auto __d = _mm_unpackhi_epi16(__a, __b); // 13oo ..oo local
315 _mm_unpacklo_epi16(__c, __d)); // 0123 oooo
359 const auto __d = _mm_unpackhi_epi8(__a, __b); // 13.. .... .... .... local
360 const auto __e = _mm_unpacklo_epi8(__c, __d); // 0123 .... .... ....
435 auto __d = _mm_unpackhi_epi8(__a, __b); // 2626 .... 3737 .... local
436 auto __e = _mm_unpacklo_epi8(__c, __d); // 0246 0246 .... ....
437 auto __f = _mm_unpackhi_epi8(__c, __d); // 1357 1357 .... ....
1182 auto __d = _mm_unpackhi_epi16(__a, __b); // 1357 .... local
1184 _mm_unpacklo_epi16(__c, __d)); // 0123 4567
1217 auto __d = _mm_unpackhi_epi8(__a, __b); // 1357 .... .... ... local
1249 auto __d = _mm_unpackhi_epi8(__a, __b); \/\/ 26AE .... 37BF .... local
1701 auto __d local
1746 const auto __d = _mm_unpackhi_epi32(__i2, __i3); \/\/ fhFH local
1920 const auto __d = _mm_unpackhi_epi8(__i2, __i3); \/\/ fh local
    [all...]

Completed in 29 milliseconds

1 2