Lines Matching full:uint32
72 typedef uint32_t uint32;
116 uint32 hashword(const uint32*, size_t, uint32);
117 void hashword2(const uint32*, size_t, uint32*, uint32*);
119 static inline uint32 Hash32StringWithSeed(const char* s, int len, uint32 seed) {
120 return hashword((uint32*)s, len/4, seed);
123 static inline uint64 Hash64StringWithSeed(const char* s, int len, uint32 seed) {
124 uint32 x, y;
127 hashword2((uint32*)s, len/4, &x, &y);