Home
last modified time | relevance | path

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

/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/ext/
H A Dbitmap_allocator.h359 _Counter_type __diff = __detail::__num_bitmaps(__bp); in _GLIBCXX_VISIBILITY()
362 (__bp.first) - (__diff + 1)) == __detail::__num_blocks(__bp)) in _GLIBCXX_VISIBILITY()
367 for (_Counter_type __i = 0; __i < __diff; ++__i) in _GLIBCXX_VISIBILITY()
922 _Difference_type __diff; in _GLIBCXX_VISIBILITY()
934 __diff = _S_last_dealloc_index; in _GLIBCXX_VISIBILITY()
935 __displacement = __real_p - _S_mem_blocks[__diff].first; in _GLIBCXX_VISIBILITY()
943 __diff = _iter - _S_mem_blocks.begin(); in _GLIBCXX_VISIBILITY()
944 __displacement = __real_p - _S_mem_blocks[__diff].first; in _GLIBCXX_VISIBILITY()
945 _S_last_dealloc_index = __diff; in _GLIBCXX_VISIBILITY()
953 (_S_mem_blocks[__diff].first) - 1; in _GLIBCXX_VISIBILITY()
[all …]
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/ext/
H A Dbitmap_allocator.h359 _Counter_type __diff = __detail::__num_bitmaps(__bp); in _GLIBCXX_VISIBILITY()
362 (__bp.first) - (__diff + 1)) == __detail::__num_blocks(__bp)) in _GLIBCXX_VISIBILITY()
367 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 …]
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/std/
H A Dmemory118 const auto __diff = __aligned - __intptr;
119 if ((__size + __diff) > __space)
123 __space -= __diff;
H A Dstring_view411 const difference_type __diff = __n1 - __n2;
412 if (__diff > std::numeric_limits<int>::max())
414 if (__diff < std::numeric_limits<int>::min())
416 return static_cast<int>(__diff);
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/debug/
H A Dsafe_iterator.h800 _Diff __diff = _SeqTraits::_S_size(*__first._M_get_sequence()); in __get_distance() local
801 return std::make_pair(-__diff.first, __diff.second); in __get_distance()