Lines Matching refs:uint32_t

72   #define ROTL32(x,r)  (((uint32_t)x << r) | ((uint32_t)x >> (32 - r)))
80 #define READ_UINT32(ptr,i) getblock32((uint32_t *)ptr,i)
85 FORCE_INLINE uint32_t fmix32 ( uint32_t h ) in fmix32()
115 static const uint32_t kC1 = 0x239b961b;
116 static const uint32_t kC2 = 0xab0e9789;
117 static const uint32_t kC3 = 0x38b34ae5;
118 static const uint32_t kC4 = 0xa1e38b93;
149 k1 = k1>>8 | (uint32_t)*ptr++<<24;\
153 k2 = k2>>8 | (uint32_t)*ptr++<<24;\
157 k3 = k3>>8 | (uint32_t)*ptr++<<24;\
161 k4 = k4>>8 | (uint32_t)*ptr++<<24;\
165 k4 = k4>>8 | (uint32_t)*ptr++<<24;\
173 void PMurHash128x86_Result(const uint32_t ph[4], const uint32_t pcarry[4], uint32_t total_length, u… in PMurHash128x86_Result()
175 uint32_t h1 = ph[0]; in PMurHash128x86_Result()
176 uint32_t h2 = ph[1]; in PMurHash128x86_Result()
177 uint32_t h3 = ph[2]; in PMurHash128x86_Result()
178 uint32_t h4 = ph[3]; in PMurHash128x86_Result()
180 uint32_t k1, k2, k3, k4 = pcarry[3]; in PMurHash128x86_Result()
243 void PMurHash128x86_Process(uint32_t ph[4], uint32_t pcarry[4], const void * const key, int len) in PMurHash128x86_Process()
245 uint32_t h1 = ph[0]; in PMurHash128x86_Process()
246 uint32_t h2 = ph[1]; in PMurHash128x86_Process()
247 uint32_t h3 = ph[2]; in PMurHash128x86_Process()
248 uint32_t h4 = ph[3]; in PMurHash128x86_Process()
250 uint32_t k1 = pcarry[0]; in PMurHash128x86_Process()
251 uint32_t k2 = pcarry[1]; in PMurHash128x86_Process()
252 uint32_t k3 = pcarry[2]; in PMurHash128x86_Process()
253 uint32_t k4 = pcarry[3]; in PMurHash128x86_Process()
307 uint32_t c = k1>>rshift; // --10 in PMurHash128x86_Process()
335 uint32_t c = k2>>rshift; // --54 in PMurHash128x86_Process()
363 uint32_t c = k3>>rshift; // --98 in PMurHash128x86_Process()
390 uint32_t c = k4>>rshift; // --dc in PMurHash128x86_Process()
427 void PMurHash128x86(const void * key, const int len, uint32_t seed, void * out) in PMurHash128x86()
429 uint32_t carry[4] = {0, 0, 0, 0}; in PMurHash128x86()
430 uint32_t h[4] = {seed, seed, seed, seed}; in PMurHash128x86()
432 PMurHash128x86_Result(h, carry, (uint32_t) len, (uint32_t *) out); in PMurHash128x86()
484 const uint32_t total_length, uint64_t out[2]) in PMurHash128x64_Result()
634 void PMurHash128x64(const void * key, const int len, uint32_t seed, void * out) in PMurHash128x64()
639 PMurHash128x64_Result(h, carry, (uint32_t) len, (uint64_t *) out); in PMurHash128x64()