/frameworks/support/renderscript/v8/rs_support/ |
D | rsMatrix3x3.cpp | 54 const float rhs_ij = ((const Matrix3x3 *)rhs)->get(i, j); in loadMultiply() local 55 ri0 += ((const Matrix3x3 *)lhs)->get(j, 0) * rhs_ij; in loadMultiply() 56 ri1 += ((const Matrix3x3 *)lhs)->get(j, 1) * rhs_ij; in loadMultiply() 57 ri2 += ((const Matrix3x3 *)lhs)->get(j, 2) * rhs_ij; in loadMultiply()
|
D | rsMatrix2x2.cpp | 49 const float rhs_ij = ((const Matrix2x2 *)rhs)->get(i, j); in loadMultiply() local 50 ri0 += ((const Matrix2x2 *)lhs)->get(j, 0) * rhs_ij; in loadMultiply() 51 ri1 += ((const Matrix2x2 *)lhs)->get(j, 1) * rhs_ij; in loadMultiply()
|
D | rsMatrix4x4.cpp | 259 const float rhs_ij = ((const Matrix4x4 *)rhs)->get(i,j); in loadMultiply() local 260 ri0 += ((const Matrix4x4 *)lhs)->get(j,0) * rhs_ij; in loadMultiply() 261 ri1 += ((const Matrix4x4 *)lhs)->get(j,1) * rhs_ij; in loadMultiply() 262 ri2 += ((const Matrix4x4 *)lhs)->get(j,2) * rhs_ij; in loadMultiply() 263 ri3 += ((const Matrix4x4 *)lhs)->get(j,3) * rhs_ij; in loadMultiply()
|
/frameworks/rs/ |
D | rsMatrix3x3.cpp | 54 const float rhs_ij = ((const Matrix3x3 *)rhs)->get(i, j); in loadMultiply() local 55 ri0 += ((const Matrix3x3 *)lhs)->get(j, 0) * rhs_ij; in loadMultiply() 56 ri1 += ((const Matrix3x3 *)lhs)->get(j, 1) * rhs_ij; in loadMultiply() 57 ri2 += ((const Matrix3x3 *)lhs)->get(j, 2) * rhs_ij; in loadMultiply()
|
D | rsMatrix2x2.cpp | 49 const float rhs_ij = ((const Matrix2x2 *)rhs)->get(i, j); in loadMultiply() local 50 ri0 += ((const Matrix2x2 *)lhs)->get(j, 0) * rhs_ij; in loadMultiply() 51 ri1 += ((const Matrix2x2 *)lhs)->get(j, 1) * rhs_ij; in loadMultiply()
|
D | rsMatrix4x4.cpp | 259 const float rhs_ij = ((const Matrix4x4 *)rhs)->get(i,j); in loadMultiply() local 260 ri0 += ((const Matrix4x4 *)lhs)->get(j,0) * rhs_ij; in loadMultiply() 261 ri1 += ((const Matrix4x4 *)lhs)->get(j,1) * rhs_ij; in loadMultiply() 262 ri2 += ((const Matrix4x4 *)lhs)->get(j,2) * rhs_ij; in loadMultiply() 263 ri3 += ((const Matrix4x4 *)lhs)->get(j,3) * rhs_ij; in loadMultiply()
|
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/ |
D | Matrix2f.java | 141 float rhs_ij = rhs.get(i,j); in loadMultiply() local 142 ri0 += lhs.get(j,0) * rhs_ij; in loadMultiply() 143 ri1 += lhs.get(j,1) * rhs_ij; in loadMultiply()
|
D | Matrix3f.java | 216 float rhs_ij = rhs.get(i,j); in loadMultiply() local 217 ri0 += lhs.get(j,0) * rhs_ij; in loadMultiply() 218 ri1 += lhs.get(j,1) * rhs_ij; in loadMultiply() 219 ri2 += lhs.get(j,2) * rhs_ij; in loadMultiply()
|
D | Matrix4f.java | 233 float rhs_ij = rhs.get(i,j); in loadMultiply() local 234 ri0 += lhs.get(j,0) * rhs_ij; in loadMultiply() 235 ri1 += lhs.get(j,1) * rhs_ij; in loadMultiply() 236 ri2 += lhs.get(j,2) * rhs_ij; in loadMultiply() 237 ri3 += lhs.get(j,3) * rhs_ij; in loadMultiply()
|
/frameworks/base/graphics/java/android/renderscript/ |
D | Matrix2f.java | 141 float rhs_ij = rhs.get(i,j); in loadMultiply() local 142 ri0 += lhs.get(j,0) * rhs_ij; in loadMultiply() 143 ri1 += lhs.get(j,1) * rhs_ij; in loadMultiply()
|
D | Matrix3f.java | 216 float rhs_ij = rhs.get(i,j); in loadMultiply() local 217 ri0 += lhs.get(j,0) * rhs_ij; in loadMultiply() 218 ri1 += lhs.get(j,1) * rhs_ij; in loadMultiply() 219 ri2 += lhs.get(j,2) * rhs_ij; in loadMultiply()
|
D | Matrix4f.java | 233 float rhs_ij = rhs.get(i,j); in loadMultiply() local 234 ri0 += lhs.get(j,0) * rhs_ij; in loadMultiply() 235 ri1 += lhs.get(j,1) * rhs_ij; in loadMultiply() 236 ri2 += lhs.get(j,2) * rhs_ij; in loadMultiply() 237 ri3 += lhs.get(j,3) * rhs_ij; in loadMultiply()
|
/frameworks/base/core/jni/android/opengl/ |
D | util.cpp | 480 register const float rhs_ij = rhs[ I(i,j) ]; in multiplyMM() local 481 ri0 += lhs[ I(j,0) ] * rhs_ij; in multiplyMM() 482 ri1 += lhs[ I(j,1) ] * rhs_ij; in multiplyMM() 483 ri2 += lhs[ I(j,2) ] * rhs_ij; in multiplyMM() 484 ri3 += lhs[ I(j,3) ] * rhs_ij; in multiplyMM()
|
/frameworks/native/opengl/libagl/ |
D | matrix.cpp | 262 register const float rhs_ij = rhs.m[ I(i,j) ]; in multiply() local 263 ri0 += m[ I(j,0) ] * rhs_ij; in multiply() 264 ri1 += m[ I(j,1) ] * rhs_ij; in multiply() 265 ri2 += m[ I(j,2) ] * rhs_ij; in multiply() 266 ri3 += m[ I(j,3) ] * rhs_ij; in multiply()
|