Lines Matching refs:tmp0
143 union aegis_block *tmp0 = &tmp.blocks[0]; in crypto_aegis128l_encrypt_chunk() local
153 *tmp0 = state->blocks[2]; in crypto_aegis128l_encrypt_chunk()
154 crypto_aegis_block_and(tmp0, &state->blocks[3]); in crypto_aegis128l_encrypt_chunk()
155 crypto_aegis_block_xor(tmp0, &state->blocks[6]); in crypto_aegis128l_encrypt_chunk()
156 crypto_aegis_block_xor(tmp0, &state->blocks[1]); in crypto_aegis128l_encrypt_chunk()
157 crypto_aegis_block_xor(tmp0, &src_blk->blocks[0]); in crypto_aegis128l_encrypt_chunk()
175 *tmp0 = state->blocks[2]; in crypto_aegis128l_encrypt_chunk()
176 crypto_aegis_block_and(tmp0, &state->blocks[3]); in crypto_aegis128l_encrypt_chunk()
177 crypto_aegis_block_xor(tmp0, &state->blocks[6]); in crypto_aegis128l_encrypt_chunk()
178 crypto_aegis_block_xor(tmp0, &state->blocks[1]); in crypto_aegis128l_encrypt_chunk()
179 crypto_xor(tmp0->bytes, src + 0 * AEGIS_BLOCK_SIZE, in crypto_aegis128l_encrypt_chunk()
203 *tmp0 = state->blocks[2]; in crypto_aegis128l_encrypt_chunk()
204 crypto_aegis_block_and(tmp0, &state->blocks[3]); in crypto_aegis128l_encrypt_chunk()
205 crypto_aegis_block_xor(tmp0, &state->blocks[6]); in crypto_aegis128l_encrypt_chunk()
206 crypto_aegis_block_xor(tmp0, &state->blocks[1]); in crypto_aegis128l_encrypt_chunk()
215 crypto_aegis_block_xor(&msg.blocks[0], tmp0); in crypto_aegis128l_encrypt_chunk()
226 union aegis_block *tmp0 = &tmp.blocks[0]; in crypto_aegis128l_decrypt_chunk() local
236 *tmp0 = state->blocks[2]; in crypto_aegis128l_decrypt_chunk()
237 crypto_aegis_block_and(tmp0, &state->blocks[3]); in crypto_aegis128l_decrypt_chunk()
238 crypto_aegis_block_xor(tmp0, &state->blocks[6]); in crypto_aegis128l_decrypt_chunk()
239 crypto_aegis_block_xor(tmp0, &state->blocks[1]); in crypto_aegis128l_decrypt_chunk()
240 crypto_aegis_block_xor(tmp0, &src_blk->blocks[0]); in crypto_aegis128l_decrypt_chunk()
258 *tmp0 = state->blocks[2]; in crypto_aegis128l_decrypt_chunk()
259 crypto_aegis_block_and(tmp0, &state->blocks[3]); in crypto_aegis128l_decrypt_chunk()
260 crypto_aegis_block_xor(tmp0, &state->blocks[6]); in crypto_aegis128l_decrypt_chunk()
261 crypto_aegis_block_xor(tmp0, &state->blocks[1]); in crypto_aegis128l_decrypt_chunk()
262 crypto_xor(tmp0->bytes, src + 0 * AEGIS_BLOCK_SIZE, in crypto_aegis128l_decrypt_chunk()
286 *tmp0 = state->blocks[2]; in crypto_aegis128l_decrypt_chunk()
287 crypto_aegis_block_and(tmp0, &state->blocks[3]); in crypto_aegis128l_decrypt_chunk()
288 crypto_aegis_block_xor(tmp0, &state->blocks[6]); in crypto_aegis128l_decrypt_chunk()
289 crypto_aegis_block_xor(tmp0, &state->blocks[1]); in crypto_aegis128l_decrypt_chunk()
290 crypto_aegis_block_xor(&msg.blocks[0], tmp0); in crypto_aegis128l_decrypt_chunk()