Files
dolphin/Source/Core/Common/Hash.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
713 B
C++
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2008-12-08 04:46:09 +00:00
#pragma once
2008-12-08 04:46:09 +00:00
#include <cstddef>
2021-12-10 12:47:03 -08:00
#include <string_view>
2014-09-07 20:06:58 -05:00
#include "Common/CommonTypes.h"
2008-12-08 04:46:09 +00:00
namespace Common
{
u32 HashFletcher(const u8* data_u8, size_t length); // FAST. Length & 1 == 0.
2008-07-12 17:40:22 +00:00
u32 HashAdler32(const u8* data, size_t len); // Fairly accurate, slightly slower
2020-04-08 18:19:37 -07:00
u32 HashEctor(const u8* ptr, size_t length); // JUNK. DO NOT USE FOR NEW THINGS
2016-01-21 21:16:51 +01:00
u64 GetHash64(const u8* src, u32 len, u32 samples);
void SetHash64Function();
2021-12-10 12:47:03 -08:00
u32 ComputeCRC32(std::string_view data);
u32 ComputeCRC32(const u8* ptr, u32 length);
u32 StartCRC32();
u32 UpdateCRC32(u32 crc, const u8* ptr, u32 length);
} // namespace Common