Lines Matching refs:x2
231 double x0, x1, x2, x3; in poly1305_blocks() local
302 x2 = in2.d - TWO(52)*TWO64; in poly1305_blocks()
307 x2 += h2lo; in poly1305_blocks()
321 x2 = in2.d - TWO(52)*TWO64; in poly1305_blocks()
330 h2lo += x2; in poly1305_blocks()
350 x2 = (h2lo - c2lo) + c1lo; in poly1305_blocks()
355 x2 += (h2hi - c2hi) + c1hi; in poly1305_blocks()
365 h0lo = s3lo * x1 + s2lo * x2 + s1lo * x3 + r0lo * x0; in poly1305_blocks()
366 h1lo = r0lo * x1 + s3lo * x2 + s2lo * x3 + r1lo * x0; in poly1305_blocks()
367 h2lo = r1lo * x1 + r0lo * x2 + s3lo * x3 + r2lo * x0; in poly1305_blocks()
368 h3lo = r2lo * x1 + r1lo * x2 + r0lo * x3 + r3lo * x0; in poly1305_blocks()
370 h0hi = s3hi * x1 + s2hi * x2 + s1hi * x3 + r0hi * x0; in poly1305_blocks()
371 h1hi = r0hi * x1 + s3hi * x2 + s2hi * x3 + r1hi * x0; in poly1305_blocks()
372 h2hi = r1hi * x1 + r0hi * x2 + s3hi * x3 + r2hi * x0; in poly1305_blocks()
373 h3hi = r2hi * x1 + r1hi * x2 + r0hi * x3 + r3hi * x0; in poly1305_blocks()
397 x2 = (h2lo - c2lo) + c1lo; in poly1305_blocks()
402 x2 += (h2hi - c2hi) + c1hi; in poly1305_blocks()
410 st->h[2].d = x2 + TWO(52)*TWO64; in poly1305_blocks()