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.

25 lines
613 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 HashAdler32(const u8* data, size_t len);
// JUNK. DO NOT USE FOR NEW THINGS
u32 HashEctor(const u8* data, size_t len);
// Specialized hash function used for the texture cache
2016-01-21 21:16:51 +01:00
u64 GetHash64(const u8* src, u32 len, u32 samples);
2021-12-10 12:47:03 -08:00
u32 StartCRC32();
u32 UpdateCRC32(u32 crc, const u8* data, size_t len);
u32 ComputeCRC32(const u8* data, size_t len);
u32 ComputeCRC32(std::string_view data);
} // namespace Common