Lines Matching refs:top

112 	struct blocks8 *top;  in aesni_encrypt_ecb()  local
119 top = (struct blocks8 *)to; in aesni_encrypt_ecb()
123 top->blk[0] = tout[0]; in aesni_encrypt_ecb()
124 top->blk[1] = tout[1]; in aesni_encrypt_ecb()
125 top->blk[2] = tout[2]; in aesni_encrypt_ecb()
126 top->blk[3] = tout[3]; in aesni_encrypt_ecb()
127 top->blk[4] = tout[4]; in aesni_encrypt_ecb()
128 top->blk[5] = tout[5]; in aesni_encrypt_ecb()
129 top->blk[6] = tout[6]; in aesni_encrypt_ecb()
130 top->blk[7] = tout[7]; in aesni_encrypt_ecb()
152 struct blocks8 *top; in aesni_decrypt_ecb() local
158 top = (struct blocks8 *)to; in aesni_decrypt_ecb()
162 top->blk[0] = tout[0]; in aesni_decrypt_ecb()
163 top->blk[1] = tout[1]; in aesni_decrypt_ecb()
164 top->blk[2] = tout[2]; in aesni_decrypt_ecb()
165 top->blk[3] = tout[3]; in aesni_decrypt_ecb()
166 top->blk[4] = tout[4]; in aesni_decrypt_ecb()
167 top->blk[5] = tout[5]; in aesni_decrypt_ecb()
168 top->blk[6] = tout[6]; in aesni_decrypt_ecb()
169 top->blk[7] = tout[7]; in aesni_decrypt_ecb()
214 struct blocks8 *top; in aesni_encrypt_icm() local
243 top = (struct blocks8 *)to; in aesni_encrypt_icm()
247 top->blk[0] = blks->blk[0] ^ tout[0]; in aesni_encrypt_icm()
248 top->blk[1] = blks->blk[1] ^ tout[1]; in aesni_encrypt_icm()
249 top->blk[2] = blks->blk[2] ^ tout[2]; in aesni_encrypt_icm()
250 top->blk[3] = blks->blk[3] ^ tout[3]; in aesni_encrypt_icm()
251 top->blk[4] = blks->blk[4] ^ tout[4]; in aesni_encrypt_icm()
252 top->blk[5] = blks->blk[5] ^ tout[5]; in aesni_encrypt_icm()
253 top->blk[6] = blks->blk[6] ^ tout[6]; in aesni_encrypt_icm()
254 top->blk[7] = blks->blk[7] ^ tout[7]; in aesni_encrypt_icm()
338 __m128i *top; in aesni_crypt_xts_block8() local
372 top = (__m128i *)to; in aesni_crypt_xts_block8()
373 _mm_storeu_si128(&top[0], tmp[0] ^ tweaks[0]); in aesni_crypt_xts_block8()
374 _mm_storeu_si128(&top[1], tmp[1] ^ tweaks[1]); in aesni_crypt_xts_block8()
375 _mm_storeu_si128(&top[2], tmp[2] ^ tweaks[2]); in aesni_crypt_xts_block8()
376 _mm_storeu_si128(&top[3], tmp[3] ^ tweaks[3]); in aesni_crypt_xts_block8()
377 _mm_storeu_si128(&top[4], tmp[4] ^ tweaks[4]); in aesni_crypt_xts_block8()
378 _mm_storeu_si128(&top[5], tmp[5] ^ tweaks[5]); in aesni_crypt_xts_block8()
379 _mm_storeu_si128(&top[6], tmp[6] ^ tweaks[6]); in aesni_crypt_xts_block8()
380 _mm_storeu_si128(&top[7], tmp[7] ^ tweaks[7]); in aesni_crypt_xts_block8()