Home | History | Annotate | Download | only in gpu

Lines Matching full:hash

16  *  Hash function class that can take a data chunk of any predetermined length. The hash function
17 * used is the One-at-a-Time Hash (http://burtleburtle.net/bob/hash/doobs.html).
58 uint32_t hash = 0;
61 hash += *data++;
62 hash += (fHash << 10);
63 hash ^= (hash >> 6);
66 hash += (fHash << 3);
67 hash ^= (fHash >> 11);
68 hash += (fHash << 15);
72 fHash = hash;