-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmemory_functions.cpp
31 lines (23 loc) · 1 KB
/
memory_functions.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "memory_functions.h"
#include <string.h>
#include <cstddef>
const void* memfind(const void* haystack, const size_t haystackSize, const void* needle, const size_t needleSize) noexcept
{
if (needleSize == 0 || haystackSize == 0 || needleSize > haystackSize) [[unlikely]]
return nullptr;
const size_t lastPossibleStartingLocation = haystackSize - needleSize;
auto* bHaystack = reinterpret_cast<const std::byte*>(haystack), *bNeedle = reinterpret_cast<const std::byte*>(needle);
for (const auto* match = bHaystack, *end = bHaystack + lastPossibleStartingLocation; match != end; )
{
const size_t lengthLeft = lastPossibleStartingLocation - static_cast<size_t>(match - bHaystack) + 1;
match = reinterpret_cast<const std::byte*>(::memchr(match, (char)bNeedle[0], lengthLeft));
if (!match)
return nullptr;
if (needleSize == 1) [[unlikely]]
return match;
if (::memcmp(match + 1, bNeedle + 1, needleSize - 1) == 0)
return match;
++match;
}
return nullptr;
}