Home
last modified time | relevance | path

Searched refs:__idx (Results 1 – 8 of 8) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/libcxx/include/__memory/
Duninitialized_algorithms.h144 auto __idx = __first; in uninitialized_default_construct() local
148 for (; __idx != __last; ++__idx) in uninitialized_default_construct()
149 ::new ((void*)_VSTD::addressof(*__idx)) _Vt; in uninitialized_default_construct()
152 _VSTD::destroy(__first, __idx); in uninitialized_default_construct()
162 auto __idx = __first; in uninitialized_default_construct_n() local
166 for (; __n > 0; (void)++__idx, --__n) in uninitialized_default_construct_n()
167 ::new ((void*)_VSTD::addressof(*__idx)) _Vt; in uninitialized_default_construct_n()
168 return __idx; in uninitialized_default_construct_n()
171 _VSTD::destroy(__first, __idx); in uninitialized_default_construct_n()
182 auto __idx = __first; in uninitialized_value_construct() local
[all …]
/freebsd-12-stable/contrib/llvm-project/libcxx/include/__iterator/
Dcommon_iterator.h93 auto __idx = __hold_.index();
97 if (__idx == 0 && __other_idx == 0)
99 else if (__idx == 1 && __other_idx == 1)
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dspan338 _LIBCPP_INLINE_VISIBILITY constexpr reference operator[](size_type __idx) const noexcept
340 _LIBCPP_ASSERT(__idx < size(), "span<T,N>[] index out of bounds");
341 return __data[__idx];
500 _LIBCPP_INLINE_VISIBILITY constexpr reference operator[](size_type __idx) const noexcept
502 _LIBCPP_ASSERT(__idx < size(), "span<T>[] index out of bounds");
503 return __data[__idx];
Dstring4392 _LIBCPP_FUNC_VIS int stoi (const string& __str, size_t* __idx = nullptr, int __base…
4393 _LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = nullptr, int __base…
4394 _LIBCPP_FUNC_VIS unsigned long stoul (const string& __str, size_t* __idx = nullptr, int __base…
4395 _LIBCPP_FUNC_VIS long long stoll (const string& __str, size_t* __idx = nullptr, int __base…
4396 _LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = nullptr, int __base…
4398 _LIBCPP_FUNC_VIS float stof (const string& __str, size_t* __idx = nullptr);
4399 _LIBCPP_FUNC_VIS double stod (const string& __str, size_t* __idx = nullptr);
4400 _LIBCPP_FUNC_VIS long double stold(const string& __str, size_t* __idx = nullptr);
4412 _LIBCPP_FUNC_VIS int stoi (const wstring& __str, size_t* __idx = nullptr, int __bas…
4413 _LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = nullptr, int __bas…
[all …]
Dtuple1318 const size_t __idx = tuple_size<_Tp>::value - _Ip;
1319 if (_VSTD::get<__idx>(__x) < _VSTD::get<__idx>(__y))
1321 if (_VSTD::get<__idx>(__y) < _VSTD::get<__idx>(__x))
Dchrono1931 unsigned char __idx;
1935 : __wd{__wdval}, __idx(__idxval) {}
1937 inline constexpr unsigned index() const noexcept { return __idx; }
1938 inline constexpr bool ok() const noexcept { return __wd.ok() && __idx >= 1 && __idx <= 5; }
Dregex5623 size_t __idx = *__fmt_first - '0';
5628 if (__idx >= numeric_limits<size_t>::max() / 10)
5630 __idx = 10 * __idx + *__fmt_first - '0';
5632 __output_iter = _VSTD::copy((*this)[__idx].first,
5633 (*this)[__idx].second, __output_iter);
/freebsd-12-stable/contrib/libstdc++/include/bits/
Dlocale_facets.tcc2600 size_t __idx = 0; in __add_grouping() local
2603 while (__last - __first > __gbeg[__idx] in __add_grouping()
2604 && static_cast<signed char>(__gbeg[__idx]) > 0) in __add_grouping()
2606 __last -= __gbeg[__idx]; in __add_grouping()
2607 __idx < __gsize - 1 ? ++__idx : ++__ctr; in __add_grouping()
2616 for (char __i = __gbeg[__idx]; __i > 0; --__i) in __add_grouping()
2620 while (__idx--) in __add_grouping()
2623 for (char __i = __gbeg[__idx]; __i > 0; --__i) in __add_grouping()