Exemplo n.º 1
0
unsigned int compute_user_hash(const MyString &key) {
    return key.Hash();
};
Exemplo n.º 2
0
static unsigned int compute_string_hash(const MyString& str)
{
	return str.Hash();
}
Exemplo n.º 3
0
unsigned int MyStringHash( const MyString &str )
{
	return str.Hash();
}
Exemplo n.º 4
0
// Hash function for HolePunchTable_t hash tables
static unsigned int
compute_host_hash( const MyString & str )
{
	return ( str.Hash() );
}