/external/clang/test/CodeGen/ |
D | builtins-systemz-zvector.c | 1576 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 …]
|
D | builtins-ppc-vsx.c | 766 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()
|
D | builtins-ppc-altivec.c | 2323 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/clang/lib/Headers/ |
D | vecintrin.h | 4889 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 …]
|
D | altivec.h | 4774 #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/ZVector/ |
D | PacketMath.h | 434 …andnot<Packet4i>(const Packet4i& a, const Packet4i& b) { return pand<Packet4i>(a, vec_nor(b, b)); } 435 …ket2d pandnot<Packet2d>(const Packet2d& a, const Packet2d& b) { return vec_and(a, vec_nor(b, b)); } 976 …ket4f pandnot<Packet4f>(const Packet4f& a, const Packet4f& b) { return vec_and(a, vec_nor(b, b)); }
|
D | Complex.h | 141 …t1cd>(const Packet1cd& a, const Packet1cd& b) { return Packet1cd(vec_and(a.v, vec_nor(b.v,b.v))); }
|
/external/eigen/Eigen/src/Core/arch/AltiVec/ |
D | PacketMath.h | 872 return vec_nor(c,c); 2427 return vec_nor(c,c); 2436 …ket2d pandnot<Packet2d>(const Packet2d& a, const Packet2d& b) { return vec_and(a, vec_nor(b, b)); }
|