#ident "Copyright (c) 2007, 2008 Tokutek Inc. All rights reserved." // FNV Hash: From an idea sent by Glenn Fowler and Phong Vo to the IEEE POSIX 1003.2 committee. Landon Curt Noll improved it. // See: http://isthe.com/chongo/tech/comp/fnv/ static inline u_int32_t hash_key_extend(u_int32_t initial_hash, const unsigned char *key, size_t keylen) { size_t i; u_int32_t hash = initial_hash; for (i=0; i