mirror of
https://github.com/boostorg/unordered.git
synced 2025-05-11 05:23:58 +00:00
https://svn.boost.org/svn/boost/branches/unordered/trunk ........ r43840 | danieljames | 2008-03-24 17:25:07 +0000 (Mon, 24 Mar 2008) | 1 line Fix a g++ warning. ........ r43844 | danieljames | 2008-03-24 17:56:28 +0000 (Mon, 24 Mar 2008) | 1 line It's a new-ish year. ........ r43885 | danieljames | 2008-03-27 20:36:10 +0000 (Thu, 27 Mar 2008) | 1 line The release script doesn't need to copy images and css - because that's now done in the jamfiles. Also tweak the shell script a tad bit. ........ r43890 | danieljames | 2008-03-27 23:01:40 +0000 (Thu, 27 Mar 2008) | 1 line Starting to add a docbook bibliography. ........ r43894 | danieljames | 2008-03-27 23:24:18 +0000 (Thu, 27 Mar 2008) | 1 line Redeclare 'data' in iterator_base to help compilers which have trouble with accessing the nested typedef. ........ [SVN r43895]
67 lines
2.1 KiB
C++
67 lines
2.1 KiB
C++
// See: http://www.isthe.com/chongo/tech/comp/fnv/
|
|
|
|
#include <string>
|
|
|
|
namespace hash
|
|
{
|
|
template <std::size_t FnvPrime, std::size_t OffsetBias>
|
|
struct basic_fnv_1
|
|
{
|
|
std::size_t operator()(std::string const& text) const
|
|
{
|
|
std::size_t hash = OffsetBias;
|
|
for(std::string::const_iterator it = text.begin(), end = text.end();
|
|
it != end; ++it)
|
|
{
|
|
hash *= FnvPrime;
|
|
hash ^= *it;
|
|
}
|
|
|
|
return hash;
|
|
}
|
|
};
|
|
|
|
template <std::size_t FnvPrime, std::size_t OffsetBias>
|
|
struct basic_fnv_1a
|
|
{
|
|
std::size_t operator()(std::string const& text) const
|
|
{
|
|
std::size_t hash = OffsetBias;
|
|
for(std::string::const_iterator it = text.begin(), end = text.end();
|
|
it != end; ++it)
|
|
{
|
|
hash ^= *it;
|
|
hash *= FnvPrime;
|
|
}
|
|
|
|
return hash;
|
|
}
|
|
};
|
|
|
|
// TODO: Select Bias & Prime base on the size of std::size_t.
|
|
//
|
|
// 32 bit FNV_prime = 16777619
|
|
// 64 bit FNV_prime = 1099511628211
|
|
// 128 bit FNV_prime = 309485009821345068724781401
|
|
// 256 bit FNV_prime = 374144419156711147060143317175368453031918731002211
|
|
//
|
|
// 32 bit offset_basis = 2166136261
|
|
// 64 bit offset_basis = 14695981039346656037
|
|
// 128 bit offset_basis = 275519064689413815358837431229664493455
|
|
// 256 bit offset_basis = 100029257958052580907070968620625704837092796014241193945225284501741471925557
|
|
|
|
const std::size_t fnv_prime = 16777619;
|
|
// 64 bit FNV_prime = 1099511628211
|
|
// 128 bit FNV_prime = 309485009821345068724781401
|
|
// 256 bit FNV_prime = 374144419156711147060143317175368453031918731002211
|
|
|
|
const std::size_t fnv_offset_bias = 2166136261u;
|
|
// 64 bit offset_basis = 14695981039346656037
|
|
// 128 bit offset_basis = 275519064689413815358837431229664493455
|
|
// 256 bit offset_basis = 100029257958052580907070968620625704837092796014241193945225284501741471925557
|
|
|
|
typedef basic_fnv_1<fnv_prime, fnv_offset_bias> fnv_1;
|
|
typedef basic_fnv_1a<fnv_prime, fnv_offset_bias> fnv_1a;
|
|
|
|
}
|