Searched refs:b1 (Results 1 – 3 of 3) sorted by relevance
/crypto/ |
D | aes_generic.c | 1334 u32 b0[4], b1[4]; in aes_encrypt() local 1344 f_nround(b1, b0, kp); in aes_encrypt() 1345 f_nround(b0, b1, kp); in aes_encrypt() 1349 f_nround(b1, b0, kp); in aes_encrypt() 1350 f_nround(b0, b1, kp); in aes_encrypt() 1353 f_nround(b1, b0, kp); in aes_encrypt() 1354 f_nround(b0, b1, kp); in aes_encrypt() 1355 f_nround(b1, b0, kp); in aes_encrypt() 1356 f_nround(b0, b1, kp); in aes_encrypt() 1357 f_nround(b1, b0, kp); in aes_encrypt() [all …]
|
D | xor.c | 68 do_xor_speed(struct xor_block_template *tmpl, void *b1, void *b2) in do_xor_speed() argument 92 tmpl->do_2(BENCH_SIZE, b1, b2); in do_xor_speed() 113 void *b1, *b2; in calibrate_xor_blocks() local 130 b1 = (void *) __get_free_pages(GFP_KERNEL | __GFP_NOTRACK, 2); in calibrate_xor_blocks() 131 if (!b1) { in calibrate_xor_blocks() 135 b2 = b1 + 2*PAGE_SIZE + BENCH_SIZE; in calibrate_xor_blocks() 142 #define xor_speed(templ) do_xor_speed((templ), b1, b2) in calibrate_xor_blocks() 156 free_pages((unsigned long)b1, 2); in calibrate_xor_blocks()
|
D | ecc.c | 266 u64 b1 = right >> 32; in mul_64_64() local 268 u64 m1 = a0 * b1; in mul_64_64() 270 u64 m3 = a1 * b1; in mul_64_64()
|