Lines Matching refs:x3
231 double x0, x1, x2, x3; in poly1305_blocks() local
303 x3 = in3.d - TWO(52)*TWO96; in poly1305_blocks()
308 x3 += h3lo; in poly1305_blocks()
322 x3 = in3.d - TWO(52)*TWO96; in poly1305_blocks()
331 h2hi += x3; in poly1305_blocks()
351 x3 = (h3lo - c3lo) + c2lo; in poly1305_blocks()
356 x3 += (h3hi - c3hi) + c2hi; 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()
398 x3 = (h3lo - c3lo) + c2lo; in poly1305_blocks()
403 x3 += (h3hi - c3hi) + c2hi; in poly1305_blocks()
411 st->h[3].d = x3 + TWO(52)*TWO96; in poly1305_blocks()