Lines Matching full:fix
40 …VERIFY(is_same_eq(m.template reshaped<Order>(fix< 1>, AutoSize), m.template reshaped<Order>(fix… in check_auto_reshape4x4()
41 …Y(is_same_eq(m.template reshaped<Order>(AutoSize, fix<16> ), m.template reshaped<Order>( v1, … in check_auto_reshape4x4()
42 …VERIFY(is_same_eq(m.template reshaped<Order>(fix< 2>, AutoSize), m.template reshaped<Order>(fix… in check_auto_reshape4x4()
43 …Y(is_same_eq(m.template reshaped<Order>(AutoSize, fix< 8> ), m.template reshaped<Order>( v2, … in check_auto_reshape4x4()
44 …VERIFY(is_same_eq(m.template reshaped<Order>(fix< 4>, AutoSize), m.template reshaped<Order>(fix… in check_auto_reshape4x4()
45 …Y(is_same_eq(m.template reshaped<Order>(AutoSize, fix< 4> ), m.template reshaped<Order>( v4, … in check_auto_reshape4x4()
46 …VERIFY(is_same_eq(m.template reshaped<Order>(fix< 8>, AutoSize), m.template reshaped<Order>(fix… in check_auto_reshape4x4()
47 …Y(is_same_eq(m.template reshaped<Order>(AutoSize, fix< 2> ), m.template reshaped<Order>( v8, … in check_auto_reshape4x4()
48 …VERIFY(is_same_eq(m.template reshaped<Order>(fix<16>, AutoSize), m.template reshaped<Order>(fix… in check_auto_reshape4x4()
49 …Y(is_same_eq(m.template reshaped<Order>(AutoSize, fix< 1> ), m.template reshaped<Order>(v16, … in check_auto_reshape4x4()
88 VERIFY_IS_EQUAL(m.reshaped(fix< 1>, fix<16>), MapMat(m.data(), 1, 16)); in reshape4x4()
89 VERIFY_IS_EQUAL(m.reshaped(fix< 2>, fix< 8>), MapMat(m.data(), 2, 8)); in reshape4x4()
90 VERIFY_IS_EQUAL(m.reshaped(fix< 4>, fix< 4>), MapMat(m.data(), 4, 4)); in reshape4x4()
91 VERIFY_IS_EQUAL(m.reshaped(fix< 8>, fix< 2>), MapMat(m.data(), 8, 2)); in reshape4x4()
92 VERIFY_IS_EQUAL(m.reshaped(fix<16>, fix< 1>), MapMat(m.data(), 16, 1)); in reshape4x4()
99 .reshaped(fix< 2>,fix< 8>) in reshape4x4()
101 .reshaped(fix< 8>,fix< 2>) in reshape4x4()
103 .reshaped(fix< 1>,fix<16>) in reshape4x4()
105 .reshaped(fix<16>,fix< 1>) in reshape4x4()
107 .reshaped(fix< 4>,fix< 4>) in reshape4x4()
124 VERIFY(is_same_eq(m.reshaped(fix< 1>, AutoSize), m.reshaped(fix< 1>, v16))); in reshape4x4()
125 VERIFY(is_same_eq(m.reshaped(AutoSize, fix<16>), m.reshaped( v1, fix<16>))); in reshape4x4()
126 VERIFY(is_same_eq(m.reshaped(fix< 2>, AutoSize), m.reshaped(fix< 2>, v8))); in reshape4x4()
127 VERIFY(is_same_eq(m.reshaped(AutoSize, fix< 8>), m.reshaped( v2, fix< 8>))); in reshape4x4()
128 VERIFY(is_same_eq(m.reshaped(fix< 4>, AutoSize), m.reshaped(fix< 4>, v4))); in reshape4x4()
129 VERIFY(is_same_eq(m.reshaped(AutoSize, fix< 4>), m.reshaped( v4, fix< 4>))); in reshape4x4()
130 VERIFY(is_same_eq(m.reshaped(fix< 8>, AutoSize), m.reshaped(fix< 8>, v2))); in reshape4x4()
131 VERIFY(is_same_eq(m.reshaped(AutoSize, fix< 2>), m.reshaped( v8, fix< 2>))); in reshape4x4()
132 VERIFY(is_same_eq(m.reshaped(fix<16>, AutoSize), m.reshaped(fix<16>, v1))); in reshape4x4()
133 VERIFY(is_same_eq(m.reshaped(AutoSize, fix< 1>), m.reshaped(v16, fix< 1>))); in reshape4x4()
142 check_direct_access_reshape4x4(m,fix<MatType::Flags&RowMajorBit>); in reshape4x4()
162 VERIFY(is_same_eq(m.reshaped(v16,fix<1>), m.reshaped())); in reshape4x4()
171 VERIFY_IS_EQUAL(m.template reshaped<RowMajor>(AutoSize,fix<1>), m.template reshaped<RowMajor>()); in reshape4x4()
172 …VERIFY_IS_EQUAL(m.template reshaped<AutoOrder>(AutoSize,fix<1>), m.template reshaped<AutoOrder>()); in reshape4x4()
174 VERIFY(is_same_eq(m.reshaped(AutoSize,fix<1>), m.reshaped())); in reshape4x4()
175 …VERIFY_IS_EQUAL(m.template reshaped<RowMajor>(fix<1>,AutoSize), m.transpose().reshaped().transpose… in reshape4x4()