Searched refs:d_last (Results 1 – 1 of 1) sorted by relevance
/third_party/nghttp2/src/ |
D | shrpx_log.cc | 364 OutputIterator d_last) { in copy() argument 366 std::min(static_cast<size_t>(std::distance(d_first, d_last)), srclen); in copy() 367 return std::make_pair(std::copy_n(src, nwrite, d_first), d_last); in copy() 374 copy(const char *src, OutputIterator d_first, OutputIterator d_last) { in copy() argument 375 return copy(src, strlen(src), d_first, d_last); in copy() 382 copy(const StringRef &src, OutputIterator d_first, OutputIterator d_last) { in copy() argument 383 return copy(src.c_str(), src.size(), d_first, d_last); in copy() 390 copy_l(const char (&src)[N], OutputIterator d_first, OutputIterator d_last) { in copy_l() argument 391 return copy(src, N - 1, d_first, d_last); in copy_l() 398 OutputIterator d_last) { in copy() argument [all …]
|