MCPcopy Create free account
hub / github.com/cwida/ALP / fmemcmp

Function fmemcmp

publication/source_code/bench_end_to_end/src/common/runtime/String.cpp:5–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3using namespace std;
4
5inline bool fmemcmp(const char* __restrict__ left,
6 const char* __restrict__ right, uint32_t size) {
7 for (uint32_t i = 0; i < size; ++i)
8 if (left[i] != right[i]) {
9 return false;
10 }
11 return true;
12}
13
14SmallStringView::SmallStringView(std::experimental::string_view& s) {
15 assign(s);

Callers 1

operator==Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected