Searched refs:ctr_be (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/sys/crypto/aes/arch/x86/
H A Daes_ssse3_subr.c234 __m128i auth, ctr_be, ctr, ptxt; local
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; local
267 ctr_be = loadblock(authctr + 16);
268 ctr = _mm_shuffle_epi8(ctr_be, bs32);
271 ctr_be
[all...]
/netbsd-current/sys/crypto/aes/arch/arm/
H A Daes_neon_subr.c297 uint8x16_t auth, ptxt, ctr_be; local
304 ctr_be = loadblock(authctr + 16);
305 ctr = vreinterpretq_u32_u8(vrev32q_u8(ctr_be));
310 ctr_be = vrev32q_u8(vreinterpretq_u8_u32(ctr));
313 b2.val[1] = ctr_be;
319 storeblock(authctr + 16, ctr_be);
329 uint8x16_t auth, ctr_be, ptxt, pad; local
335 ctr_be = loadblock(authctr + 16);
336 ctr = vreinterpretq_u32_u8(vrev32q_u8(ctr_be));
338 ctr_be
[all...]

Completed in 101 milliseconds