Lines Matching refs:x1
231 double x0, x1, x2, x3; in poly1305_blocks() local
301 x1 = in1.d - TWO(52)*TWO32; in poly1305_blocks()
306 x1 += h1lo; in poly1305_blocks()
320 x1 = in1.d - TWO(52)*TWO32; in poly1305_blocks()
329 h0hi += x1; in poly1305_blocks()
349 x1 = (h1lo - c1lo) + c0lo; in poly1305_blocks()
354 x1 += (h1hi - c1hi) + c0hi; 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()
396 x1 = (h1lo - c1lo) + c0lo; in poly1305_blocks()
401 x1 += (h1hi - c1hi) + c0hi; in poly1305_blocks()
409 st->h[1].d = x1 + TWO(52)*TWO32; in poly1305_blocks()