Lines Matching refs:mb
870 PMat<T,K,C> mb; in testmatmult() local
872 PMat<T> mb(K,C); in testmatmult() local
874 init_array(mb,K*C); in testmatmult()
878 mb += TestConstant<T>::small; in testmatmult()
888 PMat<T,R,C> res = dot(ma,mb); in testmatmult()
890 PMat<T> res = dot(ma,mb); in testmatmult()
923 SB.pData = reinterpret_cast<S*>(mb.ptr()); in testmatmult()
967 PMat<T,K+2,C+2> mb; in testsubmatmult() local
969 PMat<T> mb(K+2,C+2); in testsubmatmult() local
971 init_array(mb,TOTALB); in testsubmatmult()
975 mb += MatTestConstant<T>::value; in testsubmatmult()
989 …res.sub(Slice(0,R),Slice(0,C)) = copy(dot(ma.sub(Slice(0,R),Slice(0,K)),mb.sub(Slice(0,K),Slice(0,… in testsubmatmult()
1028 cmsis_mb = copy(mb.sub(Slice(0,K),Slice(0,C))); in testsubmatmult()