Searched refs:vec_perm (Results 1 - 10 of 10) sorted by relevance

/openbsd-current/gnu/llvm/clang/lib/Headers/ppc_wrappers/
H A Dtmmintrin.h145 __v8hi __C = vec_perm((__v8hi)__A, (__v8hi)__B, __P);
146 __v8hi __D = vec_perm((__v8hi)__A, (__v8hi)__B, __Q);
157 __v4si __C = vec_perm((__v4si)__A, (__v4si)__B, __P);
158 __v4si __D = vec_perm((__v4si)__A, (__v4si)__B, __Q);
168 __v8hi __D = vec_perm(__C, __C, __Q);
169 __C = vec_perm(__C, __C, __P);
180 __v4si __D = vec_perm(__C, __C, __Q);
181 __C = vec_perm(__C, __C, __P);
213 __v8hi __C = vec_perm((__v8hi)__A, (__v8hi)__B, __P);
214 __v8hi __D = vec_perm((__v8h
[all...]
H A Dpmmintrin.h73 return (__m128)vec_add(vec_perm((__v4sf)__X, (__v4sf)__Y, __xform2),
74 vec_perm((__v4sf)__X, (__v4sf)__Y, __xform1));
86 return (__m128)vec_sub(vec_perm((__v4sf)__X, (__v4sf)__Y, __xform2),
87 vec_perm((__v4sf)__X, (__v4sf)__Y, __xform1));
H A Demmintrin.h863 __result = (__v4si)vec_perm((__v16qu)__temp, (__v16qu)__vzero, __pkperm);
898 __result = (__v4sf)vec_perm((__v16qu)__temp, (__v16qu)__vzero, __pkperm);
927 __result = (__v4si)vec_perm((__v16qu)__temp, (__v16qu)__vzero, __pkperm);
1399 return (__m128i)vec_perm(__w0, __w1, __xform1);
1998 return (__m128i)vec_perm(__w0, __w1, __xform1);
2030 __r = vec_perm(__a, __a, (__vector unsigned char)__pmask);
2062 __r = vec_perm(__a, __a, (__vector unsigned char)__pmask);
2086 return (__m128i)vec_perm((__v4si)__A, (__v4si)__A,
H A Dxmmintrin.h115 __result = (__m128)vec_perm(__tmp, __tmp, __permute_vector);
169 __tmp = (__m128)vec_perm(__A, __A, __permute_vector);
1231 return vec_perm((__v4sf)__A, (__v4sf)__B, (__vector unsigned char)__t);
1591 __c = (__vector unsigned short)vec_perm(__w0, __w1, __xform1);
1634 __r = vec_perm(__a, __a, (__vector unsigned char)__p);
H A Dsmmintrin.h351 __v16qu __r = vec_perm((__v16qu)__A, (__v16qu)__B, __pcv[__imm8]);
375 __v16qu __r = vec_perm((__v16qu)__A, (__v16qu)__B, __pcv[__imm8]);
H A Dmmintrin.h1095 __c = (__vector signed short)vec_perm(__w0, __w1, __xform1);
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A Daltivec.h50 static __inline__ vector signed char __ATTRS_o_ai vec_perm(
54 vec_perm(vector unsigned char __a, vector unsigned char __b,
58 vec_perm(vector bool char __a, vector bool char __b, vector unsigned char __c);
60 static __inline__ vector short __ATTRS_o_ai vec_perm(vector signed short __a,
65 vec_perm(vector unsigned short __a, vector unsigned short __b,
68 static __inline__ vector bool short __ATTRS_o_ai vec_perm(
71 static __inline__ vector pixel __ATTRS_o_ai vec_perm(vector pixel __a,
75 static __inline__ vector int __ATTRS_o_ai vec_perm(vector signed int __a,
79 static __inline__ vector unsigned int __ATTRS_o_ai vec_perm(
83 vec_perm(vecto
7950 static __inline__ vector signed char __ATTRS_o_ai vec_perm( function
7965 vec_perm(vector unsigned char __a, vector unsigned char __b, function
7980 vec_perm(vector bool char __a, vector bool char __b, vector unsigned char __c) { function
7993 static __inline__ vector short __ATTRS_o_ai vec_perm(vector signed short __a, function
8009 vec_perm(vector unsigned short __a, vector unsigned short __b, function
8023 static __inline__ vector bool short __ATTRS_o_ai vec_perm( function
8037 static __inline__ vector pixel __ATTRS_o_ai vec_perm(vector pixel __a, function
8052 static __inline__ vector int __ATTRS_o_ai vec_perm(vector signed int __a, function
8066 vec_perm(vector unsigned int __a, vector unsigned int __b, function
8081 vec_perm(vector bool int __a, vector bool int __b, vector unsigned char __c) { function
8094 static __inline__ vector float __ATTRS_o_ai vec_perm(vector float __a, function
8111 vec_perm(vector signed long long __a, vector signed long long __b, function
8126 vec_perm(vector unsigned long long __a, vector unsigned long long __b, function
8141 vec_perm(vector bool long long __a, vector bool long long __b, function
8156 vec_perm(vector double __a, vector double __b, vector unsigned char __c) { function
[all...]
H A Dvecintrin.h385 /*-- vec_perm ---------------------------------------------------------------*/
388 vec_perm(__vector signed char __a, __vector signed char __b, function
395 vec_perm(__vector unsigned char __a, __vector unsigned char __b, function
402 vec_perm(__vector __bool char __a, __vector __bool char __b, function
409 vec_perm(__vector signed short __a, __vector signed short __b, function
416 vec_perm(__vector unsigned short __a, __vector unsigned short __b, function
423 vec_perm(__vector __bool short __a, __vector __bool short __b, function
430 vec_perm(__vector signed int __a, __vector signed int __b, function
437 vec_perm(__vector unsigned int __a, __vector unsigned int __b, function
444 vec_perm(__vecto function
451 vec_perm(__vector signed long long __a, __vector signed long long __b, function
458 vec_perm(__vector unsigned long long __a, __vector unsigned long long __b, function
465 vec_perm(__vector __bool long long __a, __vector __bool long long __b, function
473 vec_perm(__vector float __a, __vector float __b, function
481 vec_perm(__vector double __a, __vector double __b, function
[all...]
/openbsd-current/gnu/gcc/gcc/config/rs6000/
H A Daltivec.h81 #define vec_vperm vec_perm
224 #define vec_perm __builtin_vec_perm macro
/openbsd-current/gnu/usr.bin/gcc/gcc/config/rs6000/
H A Daltivec.h98 #define vec_vperm vec_perm
3172 /* vec_perm */
3175 vec_perm (vector float a1, vector float a2, vector unsigned char a3) function
3181 vec_perm (vector signed int a1, vector signed int a2, vector unsigned char a3) function
3187 vec_perm (vector unsigned int a1, vector unsigned int a2, vector unsigned char a3) function
3193 vec_perm (vector signed short a1, vector signed short a2, vector unsigned char a3) function
3199 vec_perm (vector unsigned short a1, vector unsigned short a2, vector unsigned char a3) function
3205 vec_perm (vector signed char a1, vector signed char a2, vector unsigned char a3) function
3211 vec_perm (vector unsigned char a1, vector unsigned char a2, vector unsigned char a3) function
7395 #define vec_perm(a macro
[all...]

Completed in 637 milliseconds