Lines Matching refs:result
41 Matrix<float32_t,ROWS,COLS> result = a * a + b;
57 result.row(1) = 0.0f;
63 result.row<2>(2,1) = 0.0f;
91 result.col<2>(2,1) = 5.0f;
101 result.sub(4,8,4,8) = result.sub(4,8,4,8) + result.sub(4,8,4,8)
132 result = dot(a,b);
135 … compiler may use the move semantic to copy the temporary result of the `dot` function to `result`.
137 In this case, no copy would occur and `result` after the assignment would be a vector allocated by …
142 result = Matrix<float32_t,ROWS,COLS>::diagonal(c);
148 result = Matrix<float32_t,ROWS,COLS>::identity();
154 result = a.transpose();
160 transposeTo(result,a);
166 result = outer(c,c);