Home
last modified time | relevance | path

Searched refs:vec_nor (Results 1 – 11 of 11) sorted by relevance

/external/clang/test/CodeGen/
Dbuiltins-systemz-zvector.c1576 vsc = vec_nor(vsc, vsc); in test_integer()
1577 vsc = vec_nor(vsc, vbc); in test_integer()
1578 vsc = vec_nor(vbc, vsc); in test_integer()
1579 vuc = vec_nor(vuc, vuc); in test_integer()
1580 vuc = vec_nor(vuc, vbc); in test_integer()
1581 vuc = vec_nor(vbc, vuc); in test_integer()
1582 vbc = vec_nor(vbc, vbc); in test_integer()
1583 vss = vec_nor(vss, vss); in test_integer()
1584 vss = vec_nor(vss, vbs); in test_integer()
1585 vss = vec_nor(vbs, vss); in test_integer()
[all …]
Dbuiltins-ppc-vsx.c766 res_vsll = vec_nor(vsll, vsll); in test1()
772 res_vull = vec_nor(vull, vull); in test1()
778 res_vull = vec_nor(vbll, vbll); in test1()
784 res_vd = vec_nor(vd, vd); in test1()
Dbuiltins-ppc-altivec.c2323 res_vsc = vec_nor(vsc, vsc); in test6()
2329 res_vuc = vec_nor(vuc, vuc); in test6()
2335 res_vuc = vec_nor(vbc, vbc); in test6()
2341 res_vs = vec_nor(vs, vs); in test6()
2347 res_vus = vec_nor(vus, vus); in test6()
2353 res_vus = vec_nor(vbs, vbs); in test6()
2359 res_vi = vec_nor(vi, vi); in test6()
2365 res_vui = vec_nor(vui, vui); in test6()
2371 res_vui = vec_nor(vbi, vbi); in test6()
2377 res_vf = vec_nor(vf, vf); in test6()
/external/libunwind/tests/
Dppc64-test-altivec.c130 vec_nor (v1, vec_add (v2, vec_sub (v3, vec_and (v4, vec_or (v5, v6))))); in vec_stack()
143 vec_nor (v1, in vec_stack()
/external/valgrind/none/tests/ppc32/
DtestVMX.stdout.exp206 Function vec_nor [type char] ===> OK
207 Function vec_nor [type unsigened char] ===> OK
208 Function vec_nor [type short] ===> OK
209 Function vec_nor [type unsigned short] ===> OK
210 Function vec_nor [type integer] ===> OK
211 Function vec_nor [type unsigened int] ===> OK
DtestVMX.c3194 Caux1.v = vec_nor( Ccons1, Ccons2 ); in part2()
3206 UCaux1.v = vec_nor( UCcons1, UCcons2 ); in part2()
3222 Saux1.v = vec_nor( Scons1, Scons2 ); in part2()
3234 USaux1.v = vec_nor( UScons1, UScons2 ); in part2()
3250 Iaux1.v = vec_nor( Icons1, Icons2 ); in part2()
3262 UIaux1.v = vec_nor( UIcons1, UIcons2 ); in part2()
3275 Faux1.v = vec_nor( Fcons1, Fcons2 ); in part2()
/external/clang/lib/Headers/
Dvecintrin.h4889 vec_nor(vector bool char __a, vector bool char __b) { in vec_nor() function
4894 vec_nor(vector signed char __a, vector signed char __b) { in vec_nor() function
4899 vec_nor(vector bool char __a, vector signed char __b) { in vec_nor() function
4904 vec_nor(vector signed char __a, vector bool char __b) { in vec_nor() function
4909 vec_nor(vector unsigned char __a, vector unsigned char __b) { in vec_nor() function
4914 vec_nor(vector bool char __a, vector unsigned char __b) { in vec_nor() function
4919 vec_nor(vector unsigned char __a, vector bool char __b) { in vec_nor() function
4924 vec_nor(vector bool short __a, vector bool short __b) { in vec_nor() function
4929 vec_nor(vector signed short __a, vector signed short __b) { in vec_nor() function
4934 vec_nor(vector bool short __a, vector signed short __b) { in vec_nor() function
[all …]
Daltivec.h4774 #define __builtin_altivec_vnor vec_nor
4777 vec_nor(vector signed char __a, vector signed char __b) { in vec_nor() function
4782 vec_nor(vector unsigned char __a, vector unsigned char __b) { in vec_nor() function
4786 static __inline__ vector bool char __ATTRS_o_ai vec_nor(vector bool char __a, in vec_nor() function
4791 static __inline__ vector short __ATTRS_o_ai vec_nor(vector short __a, in vec_nor() function
4797 vec_nor(vector unsigned short __a, vector unsigned short __b) { in vec_nor() function
4802 vec_nor(vector bool short __a, vector bool short __b) { in vec_nor() function
4806 static __inline__ vector int __ATTRS_o_ai vec_nor(vector int __a, in vec_nor() function
4812 vec_nor(vector unsigned int __a, vector unsigned int __b) { in vec_nor() function
4816 static __inline__ vector bool int __ATTRS_o_ai vec_nor(vector bool int __a, in vec_nor() function
[all …]
/external/eigen/Eigen/src/Core/arch/AltiVec/
DPacketMath.h406 …ket4f pandnot<Packet4f>(const Packet4f& a, const Packet4f& b) { return vec_and(a, vec_nor(b, b)); }
407 …ket4i pandnot<Packet4i>(const Packet4i& a, const Packet4i& b) { return vec_and(a, vec_nor(b, b)); }
923 …ket2d pandnot<Packet2d>(const Packet2d& a, const Packet2d& b) { return vec_and(a, vec_nor(b, b)); }
/external/eigen/Eigen/src/Core/arch/ZVector/
DPacketMath.h616 …andnot<Packet4i>(const Packet4i& a, const Packet4i& b) { return pand<Packet4i>(a, vec_nor(b, b)); }
617 …ket2d pandnot<Packet2d>(const Packet2d& a, const Packet2d& b) { return vec_and(a, vec_nor(b, b)); }
DComplex.h180 …t1cd>(const Packet1cd& a, const Packet1cd& b) { return Packet1cd(vec_and(a.v, vec_nor(b.v,b.v))); }