Lines Matching refs:pval
306 …onjLhs,bool ConjRhs> void test_conj_helper(Scalar* data1, Scalar* data2, Scalar* ref, Scalar* pval) in test_conj_helper() argument
321 internal::pstore(pval,pcj.pmul(internal::pload<Packet>(data1),internal::pload<Packet>(data2))); in test_conj_helper()
322 VERIFY(areApprox(ref, pval, PacketSize) && "conj_helper pmul"); in test_conj_helper()
330 …internal::pstore(pval,pcj.pmadd(internal::pload<Packet>(data1),internal::pload<Packet>(data2),inte… in test_conj_helper()
331 VERIFY(areApprox(ref, pval, PacketSize) && "conj_helper pmadd"); in test_conj_helper()
343 EIGEN_ALIGN16 Scalar pval[PacketSize*4]; in packetmath_complex() local
351 test_conj_helper<Scalar,false,false> (data1,data2,ref,pval); in packetmath_complex()
352 test_conj_helper<Scalar,false,true> (data1,data2,ref,pval); in packetmath_complex()
353 test_conj_helper<Scalar,true,false> (data1,data2,ref,pval); in packetmath_complex()
354 test_conj_helper<Scalar,true,true> (data1,data2,ref,pval); in packetmath_complex()
359 internal::pstore(pval,internal::pcplxflip(internal::pload<Packet>(data1))); in packetmath_complex()
360 VERIFY(areApprox(ref, pval, PacketSize) && "pcplxflip"); in packetmath_complex()