Lines Matching refs:Vec2
2905 DEFINE_CONSTRUCTOR2(FloatVec2, Vec2, vec2, float, float)
3683 return mat2(vec2(mat[1][1] / det, -mat[0][1] / det),
3684 vec2(-mat[1][0] / det, mat[0][0] / det));
3702 inverse(mat2(vec2(mat[0][0], mat[0][1]),
3703 vec2(mat[1][0], mat[1][1]))));
3705 ExprP<Vec2> matB = bindExpression("matB", ctx, vec2(mat[2][0], mat[2][1]));
3706 ExprP<Vec2> matC = bindExpression("matC", ctx, vec2(mat[0][2], mat[1][2]));
3713 ExprP<Vec2> t1 = invA * matB;
3714 ExprP<Vec2> t2 = t1 * schur;
3719 ExprP<Vec2> blockB = bindExpression("blockB", ctx,
3721 ExprP<Vec2> blockC = bindExpression("blockC", ctx,
3742 inverse(mat2(vec2(mat[0][0], mat[0][1]),
3743 vec2(mat[1][0], mat[1][1]))));
3745 mat2(vec2(mat[2][0], mat[2][1]),
3746 vec2(mat[3][0], mat[3][1])));
3748 mat2(vec2(mat[0][2], mat[0][3]),
3749 vec2(mat[1][2], mat[1][3])));
3751 mat2(vec2(mat[2][2], mat[2][3]),
3752 vec2(mat[3][2], mat[3][3])));
4727 bool operator() (const Vector<T, Size>& vec1, const Vector<T, Size>& vec2) const
4731 if (inputLess(vec1[ndx], vec2[ndx]))
4733 if (inputLess(vec2[ndx], vec1[ndx]))
5053 group->addChild(createFuncCase(ctx, "vec2", m_funcs.func2));
5084 group->addChild(createFuncCase(ctx, "vec2", instance<GenF<2> >()));