Lines Matching +full:- +full:t
20 template<typename T,int R,int C>
23 std::cout << "----\r\n"; in test()
27 PMat<T,R,C> a; in test()
28 PVector<T,R> ref; in test()
30 PMat<T> a(R,C); in test()
31 PVector<T> ref(R); in test()
42 PVector<T,R> res = copy(a.col(4)); in test()
44 PVector<T> res = copy(a.col(4)); in test()
69 template<typename T>
72 const int nb_tails = TailForTests<T>::tail; in all_col_test()
73 const int nb_loops = TailForTests<T>::loop; in all_col_test()
75 title<T>("Col test"); in all_col_test()
77 test<T,NBVEC_4,5>(); in all_col_test()
78 test<T,NBVEC_8,5>(); in all_col_test()
79 test<T,NBVEC_16,5>(); in all_col_test()
80 test<T,NBVEC_32,5>(); in all_col_test()
82 test<T,1,5>(); in all_col_test()
83 test<T,nb_tails,5>(); in all_col_test()
84 test<T,nb_loops,5>(); in all_col_test()
85 test<T,nb_loops+1,5>(); in all_col_test()
86 test<T,nb_loops+nb_tails,5>(); in all_col_test()