Lines Matching refs:PVector
21 PVector<T,NB> a; in test()
22 PVector<T,NB> b; in test()
24 PVector<T> a(NB); in test()
25 PVector<T> b(NB); in test()
36 PVector<T,NB> res = a + b; in test()
38 PVector<T> res = copy(a + b); in test()
48 PVector<T,NB> ref; in test()
50 PVector<T> ref(NB); in test()
69 PVector<T,NB> a; in test_view()
70 PVector<T,NB> b; in test_view()
72 PVector<T> a(NB); in test_view()
73 PVector<T> b(NB); in test_view()
88 PVector<T,NB/2> res = a.template sub<2>() + b.template sub<2>(); in test_view()
90 PVector<T> res = a.template sub<2>() + b.template sub<2>(); in test_view()
96 PVector<T,NB/2> ref; in test_view()
102 PVector<T,NB/2> da(a.template sub<2>()); in test_view()
103 PVector<T,NB/2> db(b.template sub<2>()); in test_view()
123 PVector<T,NB> res(T(1)); in test_fill()
125 PVector<T> res(NB,T(1)); in test_fill()