2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <cstddef>
|
|
|
|
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2018-05-16 19:22:13 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
2008-12-08 04:46:09 +00:00
|
|
|
u32 HashFletcher(const u8* data_u8, size_t length); // FAST. Length & 1 == 0.
|
|
|
|
u32 HashAdler32(const u8* data, size_t len); // Fairly accurate, slightly slower
|
|
|
|
u32 HashEctor(const u8* ptr, int length); // JUNK. DO NOT USE FOR NEW THINGS
|
2016-01-21 20:16:51 +00:00
|
|
|
u64 GetHash64(const u8* src, u32 len, u32 samples);
|
2014-12-22 21:35:08 +00:00
|
|
|
void SetHash64Function();
|
2018-05-16 19:22:13 +00:00
|
|
|
} // namespace Common
|