Lines Matching defs:abytes
32 asmlinkage void ce_aes_ccm_auth_data(u8 mac[], u8 const in[], u32 abytes,
100 u32 abytes, u32 *macp)
104 ce_aes_ccm_auth_data(mac, in, abytes, macp, key->key_enc,
109 int added = min(abytes, AES_BLOCK_SIZE - *macp);
115 abytes -= added;
118 while (abytes >= AES_BLOCK_SIZE) {
123 abytes -= AES_BLOCK_SIZE;
126 if (abytes > 0) {
128 crypto_xor(mac, in, abytes);
129 *macp = abytes;