Lines Matching refs:C
20 template<typename T,int R,int C>
23 constexpr int NBOUT = C-1; in test()
25 std::cout << R << " x " << C << "\r\n"; in test()
29 PMat<T,R,C> a; in test()
31 PMat<T> a(R,C); in test()
34 init_array(a,R*C); in test()
65 template<typename T,int R,int C>
68 constexpr int NBOUT = C-2; in swaptest()
70 std::cout << R << " x " << C << "\r\n"; in swaptest()
74 PMat<T,R,C> a; in swaptest()
75 PMat<T,R,C> b; in swaptest()
77 PMat<T> a(R,C); in swaptest()
78 PMat<T> b(R,C); in swaptest()
81 init_array(a,R*C); in swaptest()
82 init_array(b,R*C); in swaptest()
93 mat.numCols = C; in swaptest()
102 if (!validate(a.const_ptr(),(const float32_t*)mat.pData,R*C)) in swaptest()