Home | History | Annotate | Download | only in dist

Lines Matching defs:h0

35 	uint32_t h0,h1,h2,h3,h4;
65 h0 = 0;
82 h0 += t0 & 0x3ffffff;
90 t[0] = mul32x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x32_64(h4,s1);
91 t[1] = mul32x32_64(h0,r1) + mul32x32_64(h1,r0) + mul32x32_64(h2,s4) + mul32x32_64(h3,s3) + mul32x32_64(h4,s2);
92 t[2] = mul32x32_64(h0,r2) + mul32x32_64(h1,r1) + mul32x32_64(h2,r0) + mul32x32_64(h3,s4) + mul32x32_64(h4,s3);
93 t[3] = mul32x32_64(h0,r3) + mul32x32_64(h1,r2) + mul32x32_64(h2,r1) + mul32x32_64(h3,r0) + mul32x32_64(h4,s4);
94 t[4] = mul32x32_64(h0,r4) + mul32x32_64(h1,r3) + mul32x32_64(h2,r2) + mul32x32_64(h3,r1) + mul32x32_64(h4,r0);
96 h0 = (uint32_t)t[0] & 0x3ffffff; c = (t[0] >> 26);
101 h0 += b * 5;
119 h0 += t0 & 0x3ffffff;
128 b = h0 >> 26; h0 = h0 & 0x3ffffff;
133 h0 += b * 5; b = h0 >> 26; h0 = h0 & 0x3ffffff;
136 g0 = h0 + 5; b = g0 >> 26; g0 &= 0x3ffffff;
144 h0 = (h0 & nb) | (g0 & b);
150 f0 = ((h0 ) | (h1 << 26)) + (uint64_t)U8TO32_LE(&key[16]);