OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Matrix2x2
(Results
1 - 3
of
3
) sorted by null
/frameworks/rs/
rsMatrix2x2.cpp
29
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) {
49
const float rhs_ij = ((const
Matrix2x2
*)rhs)->get(i, j);
50
ri0 += ((const
Matrix2x2
*)lhs)->get(j, 0) * rhs_ij;
51
ri1 += ((const
Matrix2x2
*)lhs)->get(j, 1) * rhs_ij;
58
void
Matrix2x2
::transpose() {
rsMatrix2x2.h
27
struct
Matrix2x2
: public rs_matrix2x2 {
45
Matrix2x2
tmp;
/frameworks/rs/cpu_ref/
rsCpuRuntimeMath.cpp
99
static void SC_MatrixTranspose_2x2(
Matrix2x2
*m) {
Completed in 35 milliseconds