Lines Matching defs:ctr_be
234 __m128i auth, ctr_be, ctr, ptxt;
240 ctr_be = loadblock(authctr + 16);
241 ctr = _mm_shuffle_epi8(ctr_be, bs32);
246 ctr_be = _mm_shuffle_epi8(ctr, bs32);
247 storeblock(out, ptxt ^ aes_ssse3_enc1(enc, ctr_be, nrounds));
250 storeblock(authctr + 16, ctr_be);
261 __m128i auth, ctr_be, ctr, ptxt;
267 ctr_be = loadblock(authctr + 16);
268 ctr = _mm_shuffle_epi8(ctr_be, bs32);
271 ctr_be = _mm_shuffle_epi8(ctr, bs32);
272 ptxt = loadblock(in) ^ aes_ssse3_enc1(enc, ctr_be, nrounds);
277 storeblock(authctr + 16, ctr_be);