Lines Matching refs:tmp1
144 union aegis_block *tmp1 = &tmp.blocks[1]; in crypto_aegis128l_encrypt_chunk() local
159 *tmp1 = state->blocks[6]; in crypto_aegis128l_encrypt_chunk()
160 crypto_aegis_block_and(tmp1, &state->blocks[7]); in crypto_aegis128l_encrypt_chunk()
161 crypto_aegis_block_xor(tmp1, &state->blocks[5]); in crypto_aegis128l_encrypt_chunk()
162 crypto_aegis_block_xor(tmp1, &state->blocks[2]); in crypto_aegis128l_encrypt_chunk()
163 crypto_aegis_block_xor(tmp1, &src_blk->blocks[1]); in crypto_aegis128l_encrypt_chunk()
182 *tmp1 = state->blocks[6]; in crypto_aegis128l_encrypt_chunk()
183 crypto_aegis_block_and(tmp1, &state->blocks[7]); in crypto_aegis128l_encrypt_chunk()
184 crypto_aegis_block_xor(tmp1, &state->blocks[5]); in crypto_aegis128l_encrypt_chunk()
185 crypto_aegis_block_xor(tmp1, &state->blocks[2]); in crypto_aegis128l_encrypt_chunk()
186 crypto_xor(tmp1->bytes, src + 1 * AEGIS_BLOCK_SIZE, in crypto_aegis128l_encrypt_chunk()
208 *tmp1 = state->blocks[6]; in crypto_aegis128l_encrypt_chunk()
209 crypto_aegis_block_and(tmp1, &state->blocks[7]); in crypto_aegis128l_encrypt_chunk()
210 crypto_aegis_block_xor(tmp1, &state->blocks[5]); in crypto_aegis128l_encrypt_chunk()
211 crypto_aegis_block_xor(tmp1, &state->blocks[2]); in crypto_aegis128l_encrypt_chunk()
216 crypto_aegis_block_xor(&msg.blocks[1], tmp1); in crypto_aegis128l_encrypt_chunk()
227 union aegis_block *tmp1 = &tmp.blocks[1]; in crypto_aegis128l_decrypt_chunk() local
242 *tmp1 = state->blocks[6]; in crypto_aegis128l_decrypt_chunk()
243 crypto_aegis_block_and(tmp1, &state->blocks[7]); in crypto_aegis128l_decrypt_chunk()
244 crypto_aegis_block_xor(tmp1, &state->blocks[5]); in crypto_aegis128l_decrypt_chunk()
245 crypto_aegis_block_xor(tmp1, &state->blocks[2]); in crypto_aegis128l_decrypt_chunk()
246 crypto_aegis_block_xor(tmp1, &src_blk->blocks[1]); in crypto_aegis128l_decrypt_chunk()
265 *tmp1 = state->blocks[6]; in crypto_aegis128l_decrypt_chunk()
266 crypto_aegis_block_and(tmp1, &state->blocks[7]); in crypto_aegis128l_decrypt_chunk()
267 crypto_aegis_block_xor(tmp1, &state->blocks[5]); in crypto_aegis128l_decrypt_chunk()
268 crypto_aegis_block_xor(tmp1, &state->blocks[2]); in crypto_aegis128l_decrypt_chunk()
269 crypto_xor(tmp1->bytes, src + 1 * AEGIS_BLOCK_SIZE, in crypto_aegis128l_decrypt_chunk()
292 *tmp1 = state->blocks[6]; in crypto_aegis128l_decrypt_chunk()
293 crypto_aegis_block_and(tmp1, &state->blocks[7]); in crypto_aegis128l_decrypt_chunk()
294 crypto_aegis_block_xor(tmp1, &state->blocks[5]); in crypto_aegis128l_decrypt_chunk()
295 crypto_aegis_block_xor(tmp1, &state->blocks[2]); in crypto_aegis128l_decrypt_chunk()
296 crypto_aegis_block_xor(&msg.blocks[1], tmp1); in crypto_aegis128l_decrypt_chunk()