Home | History | Annotate | Download | only in openssh

Lines Matching refs:h0

36 	uint32_t h0,h1,h2,h3,h4;
66 h0 = 0;
83 h0 += t0 & 0x3ffffff;
91 t[0] = mul32x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x32_64(h4,s1);
92 t[1] = mul32x32_64(h0,r1) + mul32x32_64(h1,r0) + mul32x32_64(h2,s4) + mul32x32_64(h3,s3) + mul32x32_64(h4,s2);
93 t[2] = mul32x32_64(h0,r2) + mul32x32_64(h1,r1) + mul32x32_64(h2,r0) + mul32x32_64(h3,s4) + mul32x32_64(h4,s3);
94 t[3] = mul32x32_64(h0,r3) + mul32x32_64(h1,r2) + mul32x32_64(h2,r1) + mul32x32_64(h3,r0) + mul32x32_64(h4,s4);
95 t[4] = mul32x32_64(h0,r4) + mul32x32_64(h1,r3) + mul32x32_64(h2,r2) + mul32x32_64(h3,r1) + mul32x32_64(h4,r0);
97 h0 = (uint32_t)t[0] & 0x3ffffff; c = (t[0] >> 26);
102 h0 += b * 5;
120 h0 += t0 & 0x3ffffff;
129 b = h0 >> 26; h0 = h0 & 0x3ffffff;
134 h0 += b * 5; b = h0 >> 26; h0 = h0 & 0x3ffffff;
137 g0 = h0 + 5; b = g0 >> 26; g0 &= 0x3ffffff;
145 h0 = (h0 & nb) | (g0 & b);
151 f0 = ((h0 ) | (h1 << 26)) + (uint64_t)U8TO32_LE(&key[16]);