Home | History | Annotate | Download | only in functional

Lines Matching defs:matB

767 	const tcu::Matrix<float, 2, 1>	matB =         tcu::Matrix<float, 2, 1>(areaB);
771 const float schurComplement = 1.0f / (matD - matC*invA*matB)(0,0);
774 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
775 const tcu::Matrix<float, 2, 1> blockB = (zeroMat-invA)*matB*schurComplement;
819 const tcu::Matrix<float, 2, 2> matB = Mat2(areaB);
823 const tcu::Matrix<float, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
826 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
827 const tcu::Matrix<float, 2, 2> blockB = (zeroMat-invA)*matB*schurComplement;