Lines Matching refs:fromc

101     struct crypto_buffer_cursor *fromc, struct crypto_buffer_cursor *toc,  in armv8_aes_encrypt_cbc()  argument
113 from = crypto_cursor_segment(fromc, &fromseglen); in armv8_aes_encrypt_cbc()
118 crypto_cursor_copydata(fromc, AES_BLOCK_LEN, block); in armv8_aes_encrypt_cbc()
139 crypto_cursor_advance(fromc, seglen); in armv8_aes_encrypt_cbc()
149 struct crypto_buffer_cursor *fromc, struct crypto_buffer_cursor *toc, in armv8_aes_decrypt_cbc() argument
161 from = crypto_cursor_segment(fromc, &fromseglen); in armv8_aes_decrypt_cbc()
166 crypto_cursor_copydata(fromc, AES_BLOCK_LEN, block); in armv8_aes_decrypt_cbc()
185 crypto_cursor_advance(fromc, oseglen - seglen); in armv8_aes_decrypt_cbc()
237 struct crypto_buffer_cursor *fromc, struct crypto_buffer_cursor *toc, in armv8_aes_crypt_xts() argument
264 from = crypto_cursor_segment(fromc, &fromseglen); in armv8_aes_crypt_xts()
269 crypto_cursor_copydata(fromc, AES_XTS_BLOCKSIZE, block); in armv8_aes_crypt_xts()
283 crypto_cursor_advance(fromc, seglen); in armv8_aes_crypt_xts()
293 const void *tweak_schedule, size_t len, struct crypto_buffer_cursor *fromc, in armv8_aes_encrypt_xts() argument
297 (const void *)&data_schedule->aes_key, tweak_schedule, len, fromc, in armv8_aes_encrypt_xts()
304 struct crypto_buffer_cursor *fromc, struct crypto_buffer_cursor *toc, in armv8_aes_decrypt_xts() argument
308 (const void *)&data_schedule->aes_key, tweak_schedule, len, fromc, in armv8_aes_decrypt_xts()
394 struct crypto_buffer_cursor *fromc, struct crypto_buffer_cursor *toc, in armv8_aes_encrypt_gcm() argument
408 from64 = crypto_cursor_segment(fromc, &fromseglen); in armv8_aes_encrypt_gcm()
416 crypto_cursor_copydata(fromc, (int)seglen, block); in armv8_aes_encrypt_gcm()
443 crypto_cursor_advance(fromc, seglen); in armv8_aes_encrypt_gcm()
457 struct crypto_buffer_cursor *fromc, struct crypto_buffer_cursor *toc, in armv8_aes_decrypt_gcm() argument
472 crypto_cursor_copy(fromc, &fromcc); in armv8_aes_decrypt_gcm()
497 from64 = crypto_cursor_segment(fromc, &fromseglen); in armv8_aes_decrypt_gcm()
505 crypto_cursor_copydata(fromc, seglen, block); in armv8_aes_decrypt_gcm()
522 crypto_cursor_advance(fromc, seglen); in armv8_aes_decrypt_gcm()