3573d5e0fa
Note that changes in test expectation come from a more verbose error diagnostics for expected errors around input parameter validation. Original change: https://chromium-review.googlesource.com/c/deps/inspector_protocol/+/2270757 Bug: chromium:1099809 Change-Id: I4fc2efc9c89d0af645dad937d719fa36e1d33489 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2277142 Reviewed-by: Yang Guo <yangguo@chromium.org> Commit-Queue: Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/master@{#68657}
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
// Copyright 2020 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "span.h"
|
|
|
|
#include <algorithm>
|
|
|
|
namespace v8_crdtp {
|
|
|
|
bool SpanLessThan(span<uint8_t> x, span<uint8_t> y) noexcept {
|
|
auto min_size = std::min(x.size(), y.size());
|
|
const int r = min_size == 0 ? 0 : memcmp(x.data(), y.data(), min_size);
|
|
return (r < 0) || (r == 0 && x.size() < y.size());
|
|
}
|
|
|
|
bool SpanEquals(span<uint8_t> x, span<uint8_t> y) noexcept {
|
|
auto len = x.size();
|
|
if (len != y.size())
|
|
return false;
|
|
return x.data() == y.data() || len == 0 ||
|
|
std::memcmp(x.data(), y.data(), len) == 0;
|
|
}
|
|
|
|
bool SpanLessThan(span<char> x, span<char> y) noexcept {
|
|
auto min_size = std::min(x.size(), y.size());
|
|
const int r = min_size == 0 ? 0 : memcmp(x.data(), y.data(), min_size);
|
|
return (r < 0) || (r == 0 && x.size() < y.size());
|
|
}
|
|
|
|
bool SpanEquals(span<char> x, span<char> y) noexcept {
|
|
auto len = x.size();
|
|
if (len != y.size())
|
|
return false;
|
|
return x.data() == y.data() || len == 0 ||
|
|
std::memcmp(x.data(), y.data(), len) == 0;
|
|
}
|
|
|
|
} // namespace v8_crdtp
|