Home | History | Annotate | Download | only in test

Lines Matching defs:Hash

13   uint32_t Hash = 0x12039854;
15 Hash += Data[i];
16 Hash += (Hash << 10);
17 Hash ^= (Hash >> 6);
19 Hash += (Hash << 3);
20 Hash ^= (Hash >> 11);
21 Hash += (Hash << 15);
22 return Hash;
29 uint32_t Hash = simple_hash(&Data[0], Size - 4);
31 if (Hash != Want)
33 fprintf(stderr, "BINGO; simple_hash defeated: %x == %x\n", (unsigned int)Hash,