Searched refs:tl (Results 1 – 2 of 2) sorted by relevance
/crypto/ |
D | vmac.c | 151 int i; u64 th, tl; \ 154 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \ 156 ADD128(rh, rl, th, tl); \ 162 int i; u64 th, tl; \ 165 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \ 167 ADD128(rh, rl, th, tl); \ 168 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i+2], \ 170 ADD128(rh1, rl1, th, tl); \ 177 int i; u64 th, tl; \ 180 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \ [all …]
|
D | camellia_generic.c | 367 u32 dw, tl, tr; in camellia_setup_tail() local 466 tl = subL[10] ^ (subR[10] & ~subR[8]); in camellia_setup_tail() 467 dw = tl & subL[8]; /* FL(kl1) */ in camellia_setup_tail() 469 SUBKEY_L(7) = subL[6] ^ tl; /* round 6 */ in camellia_setup_tail() 475 tl = subL[7] ^ (subR[7] & ~subR[9]); in camellia_setup_tail() 476 dw = tl & subL[9]; /* FLinv(kl2) */ in camellia_setup_tail() 478 SUBKEY_L(10) = tl ^ subL[11]; /* round 7 */ in camellia_setup_tail() 488 tl = subL[18] ^ (subR[18] & ~subR[16]); in camellia_setup_tail() 489 dw = tl & subL[16]; /* FL(kl3) */ in camellia_setup_tail() 491 SUBKEY_L(15) = subL[14] ^ tl; /* round 12 */ in camellia_setup_tail() [all …]
|