Searched refs:Matrix2x2 (Results 1 - 3 of 3) sorted by relevance

/frameworks/rs/
H A DrsMatrix2x2.cpp29 void Matrix2x2::loadIdentity() {
36 void Matrix2x2::load(const float *v) {
40 void Matrix2x2::load(const rs_matrix2x2 *v) {
44 void Matrix2x2::loadMultiply(const rs_matrix2x2 *lhs, const rs_matrix2x2 *rhs) {
47 Matrix2x2 temp;
52 const float rhs_ij = ((const Matrix2x2 *)rhs)->get(i, j);
53 ri0 += ((const Matrix2x2 *)lhs)->get(j, 0) * rhs_ij;
54 ri1 += ((const Matrix2x2 *)lhs)->get(j, 1) * rhs_ij;
62 void Matrix2x2::transpose() {
H A DrsMatrix2x2.h27 struct Matrix2x2 : public rs_matrix2x2 { struct in namespace:android::renderscript
/frameworks/rs/cpu_ref/
H A DrsCpuRuntimeMath.cpp99 static void SC_MatrixTranspose_2x2(Matrix2x2 *m) {
213 SC_MatrixTranspose_2x2((Matrix2x2 *) m);

Completed in 2796 milliseconds