Lines Matching refs:b
38 u64 a, b, c; member
404 u64 b = *rb; in tgr192_round() local
410 b += sbox4[(c >> 8) & 0xff] ^ sbox3[(c >> 24) & 0xff] in tgr192_round()
412 b *= mul; in tgr192_round()
415 *rb = b; in tgr192_round()
423 u64 b = *rb; 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()
436 *rb = b; in tgr192_pass()
468 u64 a, b, c, aa, bb, cc; in tgr192_transform() local
478 b = bb = tctx->b; 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()
490 b -= bb; in tgr192_transform()
494 tctx->b = b; in tgr192_transform()
503 tctx->b = 0xfedcba9876543210ULL; in tgr192_init()
603 dst[1] = be64p[1] = cpu_to_be64(tctx->b); in tgr192_final()