Lines Matching full:fix
201 VERIFY_EQ_INT( (A(seqN(2,5,fix<2>), seq(1,3,fix<3>))).InnerStrideAtCompileTime , 2); in check_indexed_view()
202 VERIFY_EQ_INT( (A(seqN(2,5,fix<2>), seq(1,3,fix<3>))).OuterStrideAtCompileTime , Dynamic); in check_indexed_view()
203 VERIFY_EQ_INT( (B(seqN(1,2,fix<2>), seq(1,3,fix<3>))).InnerStrideAtCompileTime , 2); in check_indexed_view()
204 VERIFY_EQ_INT( (B(seqN(1,2,fix<2>), seq(1,3,fix<3>))).OuterStrideAtCompileTime , 3*4); in check_indexed_view()
206 VERIFY_EQ_INT( (A(seqN(2,fix<5>), seqN(1,fix<3>))).RowsAtCompileTime, 5); in check_indexed_view()
207 VERIFY_EQ_INT( (A(seqN(2,fix<5>), seqN(1,fix<3>))).ColsAtCompileTime, 3); in check_indexed_view()
208 VERIFY_EQ_INT( (A(seqN(2,fix<5>(5)), seqN(1,fix<3>(3)))).RowsAtCompileTime, 5); in check_indexed_view()
209 VERIFY_EQ_INT( (A(seqN(2,fix<5>(5)), seqN(1,fix<3>(3)))).ColsAtCompileTime, 3); in check_indexed_view()
210 VERIFY_EQ_INT( (A(seqN(2,fix<Dynamic>(5)), seqN(1,fix<Dynamic>(3)))).RowsAtCompileTime, Dynamic); in check_indexed_view()
211 VERIFY_EQ_INT( (A(seqN(2,fix<Dynamic>(5)), seqN(1,fix<Dynamic>(3)))).ColsAtCompileTime, Dynamic); in check_indexed_view()
212 VERIFY_EQ_INT( (A(seqN(2,fix<Dynamic>(5)), seqN(1,fix<Dynamic>(3)))).rows(), 5); in check_indexed_view()
213 VERIFY_EQ_INT( (A(seqN(2,fix<Dynamic>(5)), seqN(1,fix<Dynamic>(3)))).cols(), 3); in check_indexed_view()
215 VERIFY( is_same_seq_type( seqN(2,5,fix<-1>), seqN(2,5,fix<-1>(-1)) ) ); in check_indexed_view()
216 VERIFY( is_same_seq_type( seqN(2,5), seqN(2,5,fix<1>(1)) ) ); in check_indexed_view()
217 VERIFY( is_same_seq_type( seqN(2,5,3), seqN(2,5,fix<DynamicIndex>(3)) ) ); in check_indexed_view()
218 VERIFY( is_same_seq_type( seq(2,7,fix<3>), seqN(2,2,fix<3>) ) ); in check_indexed_view()
219 VERIFY( is_same_seq_type( seqN(2,fix<Dynamic>(5),3), seqN(2,5,fix<DynamicIndex>(3)) ) ); in check_indexed_view()
220 VERIFY( is_same_seq_type( seqN(2,fix<5>(5),fix<-2>), seqN(2,fix<5>,fix<-2>()) ) ); in check_indexed_view()
222 VERIFY( is_same_seq_type( seq(2,fix<5>), seqN(2,4) ) ); in check_indexed_view()
224 VERIFY( is_same_seq_type( seq(fix<2>,fix<5>), seqN(fix<2>,fix<4>) ) ); in check_indexed_view()
225 …(2,std::integral_constant<int,5>(),std::integral_constant<int,-2>()), seqN(2,fix<5>,fix<-2>()) ) ); in check_indexed_view()
227 seq(fix<1>,fix<5>,fix<2>()) ) ); in check_indexed_view()
228 …(2,std::integral_constant<int,5>(),std::integral_constant<int,-2>()), seqN(2,fix<5>,fix<-2>()) ) ); in check_indexed_view()
230 seq(fix<1>,fix<5>,fix<2>()) ) ); in check_indexed_view()
232 VERIFY( is_same_seq_type( seqN(2,std::integral_constant<int,5>()), seqN(2,fix<5>) ) ); in check_indexed_view()
233 …type( seq(std::integral_constant<int,1>(),std::integral_constant<int,5>()), seq(fix<1>,fix<5>) ) ); in check_indexed_view()
236 VERIFY( is_same_seq( seq(fix<2>,fix<5>), seqN(fix<2>,fix<4>) ) ); in check_indexed_view()
239 VERIFY( (A(seqN(2,fix<5>), 5)).RowsAtCompileTime == 5); in check_indexed_view()
252 …VERIFY_IS_APPROX( A(seq(n-1,2,-2), seqN(n-1-6,3,-1)), A(seq(last,2,fix<-2>), seqN(last-6,3,fix<-1>… in check_indexed_view()
260 VERIFY_IS_APPROX( A(seq(1,n-1-2,2), seq(1,n-1-2,2)), A(seq(1,last-2,2), seq(1,last-2,fix<2>)) ); in check_indexed_view()
261 …X( A(seq(n-1-5,n-1-2,2), seq(n-1-5,n-1-2,2)), A(seq(last-5,last-2,2), seq(last-5,last-2,fix<2>)) ); in check_indexed_view()
262 VERIFY_IS_APPROX( A(seq(n-1-5,7,2), seq(n-1-5,7,2)), A(seq(last-5,7,2), seq(last-5,7,fix<2>)) ); in check_indexed_view()
291 VERIFY( is_same_eq(a.segment<4>(3), a(seqN(3,fix<4>))) ); in check_indexed_view()
305 VERIFY( is_same_seq_type( seq(3,7).reverse(), seqN(7,5,fix<-1>) ) ); in check_indexed_view()
306 VERIFY( is_same_seq_type( seq(7,3,fix<-2>).reverse(), seqN(3,3,fix<2>) ) ); in check_indexed_view()
307 VERIFY_IS_APPROX( a(seqN(2,last/2).reverse()), a(seqN(2+(last/2-1)*1,last/2,fix<-1>)) ); in check_indexed_view()
308 VERIFY_IS_APPROX( a(seqN(last/2,fix<4>).reverse()),a(seqN(last/2,fix<4>)).reverse() ); in check_indexed_view()
309 VERIFY_IS_APPROX( A(seq(last-5,last-1,2).reverse(), seqN(last-3,3,fix<-2>).reverse()), in check_indexed_view()
310 A(seq(last-5,last-1,2), seqN(last-3,3,fix<-2>)).reverse() ); in check_indexed_view()
317 VERIFY_IS_APPROX( a(lastN(fix<3>())), a.tail<3>() ); in check_indexed_view()
319 VERIFY( MATCH( a(lastN(3,fix<2>())), "5\n7\n9" ) ); in check_indexed_view()
320 VERIFY( a(lastN(fix<3>())).SizeAtCompileTime == 3 ); in check_indexed_view()
355 VERIFY( is_same_eq( A.block<3,4>(1,1), A.block(1,1,fix<3>,fix<4>)) ); in check_indexed_view()
356 VERIFY( is_same_eq( A.block<3,4>(1,1,3,4), A.block(1,1,fix<3>(),fix<4>(4))) ); in check_indexed_view()
357 VERIFY( is_same_eq( A.block<3,Dynamic>(1,1,3,4), A.block(1,1,fix<3>,4)) ); in check_indexed_view()
358 VERIFY( is_same_eq( A.block<Dynamic,4>(1,1,3,4), A.block(1,1,fix<Dynamic>(3),fix<4>)) ); in check_indexed_view()
359 VERIFY( is_same_eq( A.block(1,1,3,4), A.block(1,1,fix<Dynamic>(3),fix<Dynamic>(4))) ); in check_indexed_view()
361 VERIFY( is_same_eq( A.topLeftCorner<3,4>(), A.topLeftCorner(fix<3>,fix<4>)) ); in check_indexed_view()
362 VERIFY( is_same_eq( A.bottomLeftCorner<3,4>(), A.bottomLeftCorner(fix<3>,fix<4>)) ); in check_indexed_view()
363 VERIFY( is_same_eq( A.bottomRightCorner<3,4>(), A.bottomRightCorner(fix<3>,fix<4>)) ); in check_indexed_view()
364 VERIFY( is_same_eq( A.topRightCorner<3,4>(), A.topRightCorner(fix<3>,fix<4>)) ); in check_indexed_view()
366 VERIFY( is_same_eq( A.leftCols<3>(), A.leftCols(fix<3>)) ); in check_indexed_view()
367 VERIFY( is_same_eq( A.rightCols<3>(), A.rightCols(fix<3>)) ); in check_indexed_view()
368 VERIFY( is_same_eq( A.middleCols<3>(1), A.middleCols(1,fix<3>)) ); in check_indexed_view()
370 VERIFY( is_same_eq( A.topRows<3>(), A.topRows(fix<3>)) ); in check_indexed_view()
371 VERIFY( is_same_eq( A.bottomRows<3>(), A.bottomRows(fix<3>)) ); in check_indexed_view()
372 VERIFY( is_same_eq( A.middleRows<3>(1), A.middleRows(1,fix<3>)) ); in check_indexed_view()
374 VERIFY( is_same_eq( a.segment<3>(1), a.segment(1,fix<3>)) ); in check_indexed_view()
375 VERIFY( is_same_eq( a.head<3>(), a.head(fix<3>)) ); in check_indexed_view()
376 VERIFY( is_same_eq( a.tail<3>(), a.tail(fix<3>)) ); in check_indexed_view()
379 VERIFY( is_same_eq( cA.block<Dynamic,4>(1,1,3,4), cA.block(1,1,fix<Dynamic>(3),fix<4>)) ); in check_indexed_view()
381 VERIFY( is_same_eq( cA.topLeftCorner<3,4>(), cA.topLeftCorner(fix<3>,fix<4>)) ); in check_indexed_view()
382 VERIFY( is_same_eq( cA.bottomLeftCorner<3,4>(), cA.bottomLeftCorner(fix<3>,fix<4>)) ); in check_indexed_view()
383 VERIFY( is_same_eq( cA.bottomRightCorner<3,4>(), cA.bottomRightCorner(fix<3>,fix<4>)) ); in check_indexed_view()
384 VERIFY( is_same_eq( cA.topRightCorner<3,4>(), cA.topRightCorner(fix<3>,fix<4>)) ); in check_indexed_view()
386 VERIFY( is_same_eq( cA.leftCols<3>(), cA.leftCols(fix<3>)) ); in check_indexed_view()
387 VERIFY( is_same_eq( cA.rightCols<3>(), cA.rightCols(fix<3>)) ); in check_indexed_view()
388 VERIFY( is_same_eq( cA.middleCols<3>(1), cA.middleCols(1,fix<3>)) ); in check_indexed_view()
390 VERIFY( is_same_eq( cA.topRows<3>(), cA.topRows(fix<3>)) ); in check_indexed_view()
391 VERIFY( is_same_eq( cA.bottomRows<3>(), cA.bottomRows(fix<3>)) ); in check_indexed_view()
392 VERIFY( is_same_eq( cA.middleRows<3>(1), cA.middleRows(1,fix<3>)) ); in check_indexed_view()