Searched refs:tiger_round (Results 1 – 1 of 1) sorted by relevance
/external/dropbear/libtomcrypt/src/hashes/ |
D | tiger.c | 565 INLINE static void tiger_round(ulong64 *a, ulong64 *b, ulong64 *c, ulong64 x, int mul) in tiger_round() function 581 tiger_round(a,b,c,x[0],mul); in pass() 582 tiger_round(b,c,a,x[1],mul); in pass() 583 tiger_round(c,a,b,x[2],mul); in pass() 584 tiger_round(a,b,c,x[3],mul); in pass() 585 tiger_round(b,c,a,x[4],mul); in pass() 586 tiger_round(c,a,b,x[5],mul); in pass() 587 tiger_round(a,b,c,x[6],mul); in pass() 588 tiger_round(b,c,a,x[7],mul); in pass()
|