Searched refs:__current_size (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/libcxx/include/__vector/ |
| H A D | vector.h | 723 …_LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI void __annotate_new(size_type __current_size) … in __annotate_new() argument 724 __annotate_contiguous_container(data() + capacity(), data() + __current_size); in __annotate_new()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | deque | 838 _LIBCPP_HIDE_FROM_ABI void __annotate_new(size_type __current_size) const _NOEXCEPT { 839 (void)__current_size; 841 if (__current_size == 0) 845 …__annotate_from_to(__start_ + __current_size, __map_.size() * __block_size, __asan_poison, __asan_…
|
| H A D | vector | 740 _LIBCPP_HIDE_FROM_ABI void __annotate_new(size_type __current_size) const _NOEXCEPT { 741 (void)__current_size; 743 __annotate_contiguous_container(data() + capacity(), data() + __current_size);
|
| H A D | string | 1580 _LIBCPP_HIDE_FROM_ABI void __annotate_new(size_type __current_size) const _NOEXCEPT { 1581 (void)__current_size; 1584 __annotate_contiguous_container(data() + capacity() + 1, data() + __current_size + 1);
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | deque | 1029 _LIBCPP_HIDE_FROM_ABI void __annotate_new(size_type __current_size) const _NOEXCEPT { 1030 (void)__current_size; 1032 if (__current_size == 0) 1036 …__annotate_from_to(__start_ + __current_size, __map_.size() * __block_size, __asan_poison, __asan_…
|
| H A D | string | 2254 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __annotate_new(size_type __current_size) … 2255 __annotate_contiguous_container(data() + capacity() + 1, data() + __current_size + 1);
|