Searched refs:__orig_n (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | copy_n.h | 31 copy_n(_InputIterator __first, _Size __orig_n, _OutputIterator __result) { 32 typedef decltype(std::__convert_to_integral(__orig_n)) _IntegralSize; in copy_n() argument 33 _IntegralSize __n = __orig_n; in copy_n() 51 copy_n(_InputIterator __first, _Size __orig_n, _OutputIterator __result) { 53 typedef decltype(std::__convert_to_integral(__orig_n)) _IntegralSize; 54 _IntegralSize __n = __orig_n; 57 copy_n(_InputIterator __first,_Size __orig_n,_OutputIterator __result) copy_n() argument
|
H A D | generate_n.h | 23 generate_n(_OutputIterator __first, _Size __orig_n, _Generator __gen) { 24 typedef decltype(std::__convert_to_integral(__orig_n)) _IntegralSize; in generate_n() argument 25 _IntegralSize __n = __orig_n; in generate_n()
|
H A D | for_each_n.h | 26 for_each_n(_InputIterator __first, _Size __orig_n, _Function __f) { in for_each_n() argument 27 typedef decltype(std::__convert_to_integral(__orig_n)) _IntegralSize; in for_each_n() 28 _IntegralSize __n = __orig_n; in for_each_n()
|
/freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
H A D | advance.h | 65 …CPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 void advance(_InputIter& __i, _Distance __orig_n) { in advance() argument 67 _Difference __n = static_cast<_Difference>(std::__convert_to_integral(__orig_n)); in advance()
|