Lines Matching refs:a
34 u64 a, b, c; member
399 u64 a = *ra; in tgr192_round() local
404 a -= sbox1[c & 0xff] ^ sbox2[(c >> 16) & 0xff] in tgr192_round()
410 *ra = a; in tgr192_round()
418 u64 a = *ra; in tgr192_pass() local
422 tgr192_round(&a, &b, &c, x[0], mul); in tgr192_pass()
423 tgr192_round(&b, &c, &a, x[1], mul); in tgr192_pass()
424 tgr192_round(&c, &a, &b, x[2], mul); in tgr192_pass()
425 tgr192_round(&a, &b, &c, x[3], mul); in tgr192_pass()
426 tgr192_round(&b, &c, &a, x[4], mul); in tgr192_pass()
427 tgr192_round(&c, &a, &b, x[5], mul); in tgr192_pass()
428 tgr192_round(&a, &b, &c, x[6], mul); in tgr192_pass()
429 tgr192_round(&b, &c, &a, x[7], mul); in tgr192_pass()
431 *ra = a; in tgr192_pass()
464 u64 a, b, c, aa, bb, cc; in tgr192_transform() local
472 a = aa = tctx->a; in tgr192_transform()
476 tgr192_pass(&a, &b, &c, x, 5); in tgr192_transform()
478 tgr192_pass(&c, &a, &b, x, 7); in tgr192_transform()
480 tgr192_pass(&b, &c, &a, x, 9); in tgr192_transform()
484 a ^= aa; in tgr192_transform()
488 tctx->a = a; in tgr192_transform()
497 tctx->a = 0x0123456789abcdefULL; in tgr192_init()
597 dst[0] = be64p[0] = cpu_to_be64(tctx->a); in tgr192_final()