Lines Matching full:hash
41 * Calculate 32-bit Murmur hash (murmur3).
42 * This should take 2-3x longer than SkChecksum::Compute, but is a considerably better hash.
47 * @param seed Initial hash seed. (optional)
48 * @return hash result
54 uint32_t hash = seed;
61 hash ^= k;
62 hash = (hash << 13) | (hash >> 19);
63 hash *= 5;
64 hash += 0xe6546b64;
66 hash ^= bytes;
67 hash ^= hash >> 16;
68 hash *= 0x85ebca6b;
69 hash ^= hash >> 13;
70 hash *= 0xc2b2ae35;
71 hash ^= hash >> 16;
72 return hash;