Lines Matching defs:end

160     ptr = std::copy(std::begin(proto), std::end(proto), ptr);
367 std::copy(std::begin(*data), std::end(*data), buf);
432 << std::string(std::begin(res.value), std::end(res.value));
438 << std::string(std::begin(res.value), std::end(res.value));
571 std::copy(std::begin(key.data.name), std::end(key.data.name), key_name);
600 if (std::equal(std::begin(key.data.name), std::end(key.data.name),
688 for (auto p = in, end = in + inlen; p < end;) {
692 if (proto_id + proto_len <= end &&
722 for (auto p = in, end = in + inlen; p < end;) {
846 if (it == std::end(tlsconf.psk_secrets)) {
857 std::copy(std::begin(secret), std::end(secret), psk);
891 *std::copy(std::begin(identity), std::end(identity), identity_out) = '\0';
892 std::copy(std::begin(secret), std::end(secret), psk);
1535 auto end = in + inlen;
1536 for (; in < end;) {
1738 auto ptWildcard = std::find(std::begin(pattern), std::end(pattern), '*');
1739 if (ptWildcard == std::end(pattern)) {
1743 auto ptLeftLabelEnd = std::find(std::begin(pattern), std::end(pattern), '.');
1749 if (ptLeftLabelEnd == std::end(pattern) ||
1750 std::find(ptLeftLabelEnd + 1, std::end(pattern), '.') ==
1751 std::end(pattern) ||
1761 std::find(std::begin(hostname), std::end(hostname), '.');
1762 if (hnLeftLabelEnd == std::end(hostname) ||
1763 !util::strieq(StringRef{ptLeftLabelEnd, std::end(pattern)},
1764 StringRef{hnLeftLabelEnd, std::end(hostname)})) {
1998 auto wildcard_it = std::find(std::begin(hostname), std::end(hostname), '*');
1999 if (wildcard_it != std::end(hostname) &&
2000 wildcard_it + 1 != std::end(hostname)) {
2002 auto wildcard_suffix = StringRef{wildcard_it + 1, std::end(hostname)};
2006 std::end(wildcard_suffix),
2025 std::end(wildcard_prefix),
2066 std::end(hostname), std::begin(buf))};
2082 rev_host = StringRef{std::begin(rev_host) + nread, std::end(rev_host)};
2084 auto rev_prefix = StringRef{std::begin(rev_host) + 1, std::end(rev_host)};
2206 auto end_buf = std::copy(std::begin(cn), std::end(cn), std::begin(buf));
2246 return std::any_of(std::begin(faddrs), std::end(faddrs),