Searched refs:mul (Results 1 – 1 of 1) sorted by relevance
/crypto/ |
D | tgr192.c | 397 static void tgr192_round(u64 * ra, u64 * rb, u64 * rc, u64 x, int mul) in tgr192_round() argument 408 b *= mul; in tgr192_round() 416 static void tgr192_pass(u64 * ra, u64 * rb, u64 * rc, u64 * x, int mul) in tgr192_pass() argument 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() [all …]
|