Home
last modified time | relevance | path

Searched refs:b1 (Results 1 – 2 of 2) sorted by relevance

/crypto/
Daes_generic.c1329 u32 b0[4], b1[4]; in aes_encrypt() local
1339 f_nround(b1, b0, kp); in aes_encrypt()
1340 f_nround(b0, b1, kp); in aes_encrypt()
1344 f_nround(b1, b0, kp); in aes_encrypt()
1345 f_nround(b0, b1, kp); in aes_encrypt()
1348 f_nround(b1, b0, kp); in aes_encrypt()
1349 f_nround(b0, b1, kp); in aes_encrypt()
1350 f_nround(b1, b0, kp); in aes_encrypt()
1351 f_nround(b0, b1, kp); in aes_encrypt()
1352 f_nround(b1, b0, kp); in aes_encrypt()
[all …]
Dxor.c62 do_xor_speed(struct xor_block_template *tmpl, void *b1, void *b2) in do_xor_speed() argument
82 tmpl->do_2(BENCH_SIZE, b1, b2); in do_xor_speed()
101 void *b1, *b2; in calibrate_xor_blocks() local
104 b1 = (void *) __get_free_pages(GFP_KERNEL, 2); in calibrate_xor_blocks()
105 if (!b1) { in calibrate_xor_blocks()
109 b2 = b1 + 2*PAGE_SIZE + BENCH_SIZE; in calibrate_xor_blocks()
122 #define xor_speed(templ) do_xor_speed((templ), b1, b2) in calibrate_xor_blocks()
143 free_pages((unsigned long)b1, 2); in calibrate_xor_blocks()