Lines Matching defs:__h

101 /// ((__m128i*)__h) to ((__m128i*)__h) + 2  and a 32-bit value as return.
119 /// MEM[__h+127:__h] := Handle[127:0] // AAD
120 /// MEM[__h+255:__h+128] := Handle[255:128] // Integrity Tag
121 /// MEM[__h+383:__h+256] := Handle[383:256] // CipherText
130 _mm_encodekey128_u32(unsigned int __htype, __m128i __key, void *__h) {
131 return __builtin_ia32_encodekey128_u32(__htype, (__v2di)__key, __h);
135 /// output handle in ((__m128i*)__h) to ((__m128i*)__h) + 3 and
155 /// MEM[__h+127:__h] := Handle[127:0] // AAD
156 /// MEM[__h+255:__h+128] := Handle[255:128] // Tag
157 /// MEM[__h+383:__h+256] := Handle[383:256] // CipherText[127:0]
158 /// MEM[__h+511:__h+384] := Handle[511:384] // CipherText[255:128]
168 void *__h) {
170 (__v2di)__key_hi, __h);
174 /// the 128-bit key in the handle from the __h. It stores the result in the
182 /// Handle[383:0] := MEM[__h+383:__h] // Load is not guaranteed to be atomic.
206 _mm_aesenc128kl_u8(__m128i* __odata, __m128i __idata, const void *__h) {
207 return __builtin_ia32_aesenc128kl_u8((__v2di *)__odata, (__v2di)__idata, __h);
211 /// the 256-bit key in the handle from the __h. It stores the result in the
219 /// Handle[511:0] := MEM[__h+511:__h] // Load is not guaranteed to be atomic.
245 _mm_aesenc256kl_u8(__m128i* __odata, __m128i __idata, const void *__h) {
246 return __builtin_ia32_aesenc256kl_u8((__v2di *)__odata, (__v2di)__idata, __h);
250 /// the 128-bit key in the handle from the __h. It stores the result in the
258 /// Handle[383:0] := MEM[__h+383:__h] // Load is not guaranteed to be atomic.
284 _mm_aesdec128kl_u8(__m128i* __odata, __m128i __idata, const void *__h) {
285 return __builtin_ia32_aesdec128kl_u8((__v2di *)__odata, (__v2di)__idata, __h);
289 /// the 256-bit key in the handle from the __h. It stores the result in the
297 /// Handle[511:0] := MEM[__h+511:__h]
323 _mm_aesdec256kl_u8(__m128i* __odata, __m128i __idata, const void *__h) {
324 return __builtin_ia32_aesdec256kl_u8((__v2di *)__odata, (__v2di)__idata, __h);
339 /// at __h and store each resultant block back from __odata to __odata+7. And
347 /// Handle := MEM[__h+383:__h]
379 _mm_aesencwide128kl_u8(__m128i __odata[8], const __m128i __idata[8], const void* __h) {
381 (const __v2di *)__idata, __h);
385 /// at __h and store each resultant block back from __odata to __odata+7. And
393 /// Handle[511:0] := MEM[__h+511:__h]
425 _mm_aesencwide256kl_u8(__m128i __odata[8], const __m128i __idata[8], const void* __h) {
427 (const __v2di *)__idata, __h);
431 /// at __h and store each resultant block back from __odata to __odata+7. And
439 /// Handle[383:0] := MEM[__h+383:__h]
471 _mm_aesdecwide128kl_u8(__m128i __odata[8], const __m128i __idata[8], const void* __h) {
473 (const __v2di *)__idata, __h);
477 /// at __h and store each resultant block back from __odata to __odata+7. And
485 /// Handle[511:0] := MEM[__h+511:__h]
517 _mm_aesdecwide256kl_u8(__m128i __odata[8], const __m128i __idata[8], const void* __h) {
519 (const __v2di *)__idata, __h);