Home
last modified time | relevance | path

Searched refs:__diff (Results 1 – 21 of 21) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
H A Dbitmap_allocator.h357 _Counter_type __diff = __detail::__num_bitmaps(__bp); in _GLIBCXX_VISIBILITY()
360 (__bp.first) - (__diff + 1)) == __detail::__num_blocks(__bp)) in _GLIBCXX_VISIBILITY()
365 for (_Counter_type __i = 0; __i < __diff; ++__i) in _GLIBCXX_VISIBILITY()
925 _Difference_type __diff; in _GLIBCXX_VISIBILITY()
937 __diff = _S_last_dealloc_index; in _GLIBCXX_VISIBILITY()
938 __displacement = __real_p - _S_mem_blocks[__diff].first; in _GLIBCXX_VISIBILITY()
946 __diff = _iter - _S_mem_blocks.begin(); in _GLIBCXX_VISIBILITY()
947 __displacement = __real_p - _S_mem_blocks[__diff].first; in _GLIBCXX_VISIBILITY()
948 _S_last_dealloc_index = __diff; in _GLIBCXX_VISIBILITY()
956 (_S_mem_blocks[__diff].first) - 1; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dbitmap_allocator.h356 _Counter_type __diff = __detail::__num_bitmaps(__bp); in _GLIBCXX_VISIBILITY()
359 (__bp.first) - (__diff + 1)) == __detail::__num_blocks(__bp)) in _GLIBCXX_VISIBILITY()
364 for (_Counter_type __i = 0; __i < __diff; ++__i) in _GLIBCXX_VISIBILITY()
924 _Difference_type __diff; in _GLIBCXX_VISIBILITY()
936 __diff = _S_last_dealloc_index; in _GLIBCXX_VISIBILITY()
937 __displacement = __real_p - _S_mem_blocks[__diff].first; in _GLIBCXX_VISIBILITY()
945 __diff = _iter - _S_mem_blocks.begin(); in _GLIBCXX_VISIBILITY()
946 __displacement = __real_p - _S_mem_blocks[__diff].first; in _GLIBCXX_VISIBILITY()
947 _S_last_dealloc_index = __diff; in _GLIBCXX_VISIBILITY()
955 (_S_mem_blocks[__diff].first) - 1; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dalign.h68 const auto __diff = __aligned - __intptr; in _GLIBCXX_VISIBILITY() local
69 if (__diff > (__space - __size)) in _GLIBCXX_VISIBILITY()
73 __space -= __diff; in _GLIBCXX_VISIBILITY()
H A Dranges_base.h769 const auto __diff = __bound - __it; in _GLIBCXX_VISIBILITY() local
771 if (__diff == 0) in _GLIBCXX_VISIBILITY()
773 else if (__diff > 0 ? __n >= __diff : __n <= __diff) in _GLIBCXX_VISIBILITY()
776 return __n - __diff; in _GLIBCXX_VISIBILITY()
781 __glibcxx_assert(__n < 0 == __diff < 0); in _GLIBCXX_VISIBILITY()
H A Diterator_concepts.h478 struct __diff in _GLIBCXX_VISIBILITY()
484 struct __diff<_Iter> in _GLIBCXX_VISIBILITY()
492 using difference_type = typename __diff<_Iterator>::type; in _GLIBCXX_VISIBILITY()
H A Dregex.h1043 const difference_type __diff = _M_len - __s._M_len; in _GLIBCXX_VISIBILITY()
1044 if (__diff > __limits::__max) in _GLIBCXX_VISIBILITY()
1046 if (__diff < __limits::__min) in _GLIBCXX_VISIBILITY()
1048 return static_cast<int>(__diff); in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
H A Dbit129 size_t __diff = __CHAR_BIT__ * (sizeof(_Tp) - 1);
131 _Up __mask2 = __mask1 << __diff;
138 ^ (__byte1 << __diff) ^ (__byte2 >> __diff));
141 __diff -= 2 * __CHAR_BIT__;
209 constexpr int __diff = _Nd_u - _Nd;
210 return __builtin_clz(__x) - __diff;
214 constexpr int __diff = _Nd_ul - _Nd;
215 return __builtin_clzl(__x) - __diff;
219 constexpr int __diff = _Nd_ull - _Nd;
220 return __builtin_clzll(__x) - __diff;
[all …]
H A Dstring_view509 const difference_type __diff = __n1 - __n2;
510 if (__diff > __limits::__max)
512 if (__diff < __limits::__min)
514 return static_cast<int>(__diff);
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Dbit114 constexpr int __diff = _Nd_u - _Nd;
115 return __builtin_clz(__x) - __diff;
119 constexpr int __diff = _Nd_ul - _Nd;
120 return __builtin_clzl(__x) - __diff;
124 constexpr int __diff = _Nd_ull - _Nd;
125 return __builtin_clzll(__x) - __diff;
135 constexpr int __diff = (2 * _Nd_ull) - _Nd;
136 return __builtin_clzll(__high) - __diff;
H A Dmemory134 const auto __diff = __aligned - __intptr;
135 if ((__size + __diff) > __space)
139 __space -= __diff;
H A Dstring_view463 const difference_type __diff = __n1 - __n2;
464 if (__diff > __gnu_cxx::__int_traits<int>::__max)
466 if (__diff < __gnu_cxx::__int_traits<int>::__min)
468 return static_cast<int>(__diff);
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/
H A Dtimer69 auto __diff = __t - __now;
70 if (__diff > _Clock::duration::max())
72 if (__diff < _Clock::duration::min())
74 return __diff;
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/
H A Dtimer69 auto __diff = __t - __now;
70 if (__diff > _Clock::duration::max())
72 if (__diff < _Clock::duration::min())
74 return __diff;
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Drange_access.h1012 const auto __diff = __bound - __it; in _GLIBCXX_VISIBILITY() local
1014 if (__diff == 0) in _GLIBCXX_VISIBILITY()
1016 else if (__diff > 0 ? __n >= __diff : __n <= __diff) in _GLIBCXX_VISIBILITY()
1019 return __n - __diff; in _GLIBCXX_VISIBILITY()
1024 if (std::is_constant_evaluated() && !(__n < 0 == __diff < 0)) in _GLIBCXX_VISIBILITY()
1028 __glibcxx_assert(__n < 0 == __diff < 0); in _GLIBCXX_VISIBILITY()
H A Diterator_concepts.h460 struct __diff in _GLIBCXX_VISIBILITY()
466 struct __diff<_Iter> in _GLIBCXX_VISIBILITY()
474 using difference_type = typename __diff<_Iterator>::type; in _GLIBCXX_VISIBILITY()
H A Dregex.h975 const difference_type __diff = _M_len - __s._M_len; in _GLIBCXX_VISIBILITY() local
976 if (__diff > std::numeric_limits<int>::max()) in _GLIBCXX_VISIBILITY()
978 if (__diff < std::numeric_limits<int>::min()) in _GLIBCXX_VISIBILITY()
980 return static_cast<int>(__diff); in _GLIBCXX_VISIBILITY()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dcharconv355 auto __diff = __last - __first;
358 if (__tx::digits <= __diff || __tx::__width(__value) <= __diff)
363 if (__tx::digits <= __diff)
370 if (__len <= __diff)
H A Dnumeric583 _Up __diff = _Up(__b) - _Up(__a);
586 _Up __half_diff = (__diff / 2) + (__sign_bit << __bitshift) + (__sign_bit & __diff);
H A Dvector1997 difference_type __diff = this->__end_ - __p;
1998 _VSTD::advance(__m, __diff);
1999 __construct_at_end(__m, __last, __n - __diff);
/netbsd-src/tests/net/
H A Dnet_common.sh49 diff -u $old ./.__new | grep '^+' | cut -d '+' -f 2 > ./.__diff
51 cat ./.__diff
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/
H A DChangeLog-20205701 (__detail::__cat, __detail::__diff): Move to class scope in the