Searched defs:rhs_ij (Results 1 - 6 of 6) sorted by relevance

/frameworks/rs/
H A DrsMatrix2x2.cpp52 const float rhs_ij = ((const Matrix2x2 *)rhs)->get(i, j); local
53 ri0 += ((const Matrix2x2 *)lhs)->get(j, 0) * rhs_ij;
54 ri1 += ((const Matrix2x2 *)lhs)->get(j, 1) * rhs_ij;
H A DrsMatrix3x3.cpp57 const float rhs_ij = ((const Matrix3x3 *)rhs)->get(i, j); local
58 ri0 += ((const Matrix3x3 *)lhs)->get(j, 0) * rhs_ij;
59 ri1 += ((const Matrix3x3 *)lhs)->get(j, 1) * rhs_ij;
60 ri2 += ((const Matrix3x3 *)lhs)->get(j, 2) * rhs_ij;
H A DrsMatrix4x4.cpp262 const float rhs_ij = ((const Matrix4x4 *)rhs)->get(i,j); local
263 ri0 += ((const Matrix4x4 *)lhs)->get(j,0) * rhs_ij;
264 ri1 += ((const Matrix4x4 *)lhs)->get(j,1) * rhs_ij;
265 ri2 += ((const Matrix4x4 *)lhs)->get(j,2) * rhs_ij;
266 ri3 += ((const Matrix4x4 *)lhs)->get(j,3) * rhs_ij;
/frameworks/rs/driver/runtime/
H A Drs_matrix.c250 const float rhs_ij = rsMatrixGet(rhs, i, j); local
251 ri0 += rsMatrixGet(lhs, j, 0) * rhs_ij;
252 ri1 += rsMatrixGet(lhs, j, 1) * rhs_ij;
253 ri2 += rsMatrixGet(lhs, j, 2) * rhs_ij;
254 ri3 += rsMatrixGet(lhs, j, 3) * rhs_ij;
279 const float rhs_ij = rsMatrixGet(rhs, i, j); local
280 ri0 += rsMatrixGet(lhs, j, 0) * rhs_ij;
281 ri1 += rsMatrixGet(lhs, j, 1) * rhs_ij;
282 ri2 += rsMatrixGet(lhs, j, 2) * rhs_ij;
305 const float rhs_ij local
[all...]
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp262 register const float rhs_ij = rhs.m[ I(i,j) ]; local
263 ri0 += m[ I(j,0) ] * rhs_ij;
264 ri1 += m[ I(j,1) ] * rhs_ij;
265 ri2 += m[ I(j,2) ] * rhs_ij;
266 ri3 += m[ I(j,3) ] * rhs_ij;
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp480 register const float rhs_ij = rhs[ I(i,j) ]; local
481 ri0 += lhs[ I(j,0) ] * rhs_ij;
482 ri1 += lhs[ I(j,1) ] * rhs_ij;
483 ri2 += lhs[ I(j,2) ] * rhs_ij;
484 ri3 += lhs[ I(j,3) ] * rhs_ij;

Completed in 908 milliseconds