Lines Matching refs:a
38 u64 a, b, c; member
403 u64 a = *ra; in tgr192_round() local
408 a -= sbox1[c & 0xff] ^ sbox2[(c >> 16) & 0xff] in tgr192_round()
414 *ra = a; in tgr192_round()
422 u64 a = *ra; in tgr192_pass() local
426 tgr192_round(&a, &b, &c, x[0], mul); in tgr192_pass()
427 tgr192_round(&b, &c, &a, x[1], mul); in tgr192_pass()
428 tgr192_round(&c, &a, &b, x[2], mul); in tgr192_pass()
429 tgr192_round(&a, &b, &c, x[3], mul); in tgr192_pass()
430 tgr192_round(&b, &c, &a, x[4], mul); in tgr192_pass()
431 tgr192_round(&c, &a, &b, x[5], mul); in tgr192_pass()
432 tgr192_round(&a, &b, &c, x[6], mul); in tgr192_pass()
433 tgr192_round(&b, &c, &a, x[7], mul); in tgr192_pass()
435 *ra = a; in tgr192_pass()
468 u64 a, b, c, aa, bb, cc; in tgr192_transform() local
477 a = aa = tctx->a; in tgr192_transform()
481 tgr192_pass(&a, &b, &c, x, 5); in tgr192_transform()
483 tgr192_pass(&c, &a, &b, x, 7); in tgr192_transform()
485 tgr192_pass(&b, &c, &a, x, 9); in tgr192_transform()
489 a ^= aa; in tgr192_transform()
493 tctx->a = a; in tgr192_transform()
502 tctx->a = 0x0123456789abcdefULL; in tgr192_init()
602 dst[0] = be64p[0] = cpu_to_be64(tctx->a); in tgr192_final()