OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Matrix2x2
(Results
1 - 6
of
6
) 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/support/renderscript/v8/rs_support/
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/driver/
rsdRuntimeMath.cpp
133
static void SC_MatrixLoadIdentity_2x2(
Matrix2x2
*m) {
143
static void SC_MatrixLoad_2x2_f(
Matrix2x2
*m, const float *f) {
153
static void SC_MatrixLoad_4x4_2x2(Matrix4x4 *m, const
Matrix2x2
*s) {
159
static void SC_MatrixLoad_2x2_2x2(
Matrix2x2
*m, const
Matrix2x2
*s) {
188
static void SC_MatrixLoadMultiply_2x2_2x2_2x2(
Matrix2x2
*m, const
Matrix2x2
*lhs, const
Matrix2x2
*rhs) {
198
static void SC_MatrixMultiply_2x2_2x2(
Matrix2x2
*m, const
Matrix2x2
*rhs)
[
all
...]
/frameworks/support/renderscript/v8/rs_support/driver/
rsdRuntimeMath.cpp
136
static void SC_MatrixLoadIdentity_2x2(
Matrix2x2
*m) {
146
static void SC_MatrixLoad_2x2_f(
Matrix2x2
*m, const float *f) {
156
static void SC_MatrixLoad_4x4_2x2(Matrix4x4 *m, const
Matrix2x2
*s) {
162
static void SC_MatrixLoad_2x2_2x2(
Matrix2x2
*m, const
Matrix2x2
*s) {
191
static void SC_MatrixLoadMultiply_2x2_2x2_2x2(
Matrix2x2
*m, const
Matrix2x2
*lhs, const
Matrix2x2
*rhs) {
201
static void SC_MatrixMultiply_2x2_2x2(
Matrix2x2
*m, const
Matrix2x2
*rhs)
[
all
...]
Completed in 297 milliseconds