OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:matrix3f
(Results
26 - 50
of
98
) sorted by null
1
2
3
4
/external/eigen/doc/snippets/
Tutorial_solve_multiple_rhs.cpp
0
Matrix3f
A(3,3);
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
VrPipline1.java
19
import android.renderscript.
Matrix3f
;
84
Matrix3f
matrix3f
= new
Matrix3f
(mMatrixBuffer);
local
85
scriptC_vr.set_matrix3(
matrix3f
);
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
LevelsV4.java
24
import android.renderscript.
Matrix3f
;
42
Matrix3f
satMatrix = new
Matrix3f
();
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
LevelsV4.java
21
import android.renderscript.
Matrix3f
;
36
Matrix3f
satMatrix = new
Matrix3f
();
/external/eigen/demos/opengl/
gpuhelper.cpp
63
Vector3f ax =
Matrix3f
::Identity().col(2).cross(vec);
84
Vector3f ax =
Matrix3f
::Identity().col(2).cross(vec);
/external/eigen/doc/
tutorial.cpp
8
Eigen::
Matrix3f
m3 = Eigen::
Matrix3f
::Random();
FixedSizeVectorizable.dox
26
First, "fixed-size" should be clear: an Eigen object has fixed size if its number of rows and its number of columns are fixed at compile-time. So for example
Matrix3f
has fixed size, but MatrixXf doesn't (the opposite of fixed-size is dynamic-size).
TutorialGeometry.dox
86
AngleAxisf aa; aa =
Matrix3f
(..); // assumes a pure rotation matrix
88
Matrix3f
m; m = Quaternionf(..);
Matrix3f
m; m = Scaling(..);
90
Affine3f m; m = Translation3f(..); Affine3f m; m =
Matrix3f
(..);
232
Matrix3f
m;
TutorialMapClass.dox
75
Map<
Matrix3f
> A(NULL); // don't try to use this matrix yet!
79
new (&A) Map<
Matrix3f
>(get_matrix_pointer(i));
/external/eigen/test/
eigensolver_complex.cpp
110
CALL_SUBTEST_4( eigensolver(
Matrix3f
()) );
116
CALL_SUBTEST_4( eigensolver_verify_assert(
Matrix3f
()) );
lu.cpp
179
CALL_SUBTEST_1( lu_non_invertible<
Matrix3f
>() );
180
CALL_SUBTEST_1( lu_invertible<
Matrix3f
>() );
181
CALL_SUBTEST_1( lu_verify_assert<
Matrix3f
>() );
jacobisvd.cpp
383
VERIFY_IS_APPROX(svd2.matrixU(),
Matrix3f
::Identity());
384
VERIFY_IS_APPROX(svd2.matrixV(),
Matrix3f
::Identity());
394
VERIFY_IS_APPROX(svd2.matrixU(),
Matrix3f
::Identity());
395
VERIFY_IS_APPROX(svd2.matrixV(),
Matrix3f
::Identity());
403
CALL_SUBTEST_3(( jacobisvd_verify_assert(
Matrix3f
()) ));
425
CALL_SUBTEST_3(( jacobisvd<
Matrix3f
>() ));
452
CALL_SUBTEST_3(( jacobisvd_method<
Matrix3f
>() ));
eigen2support.cpp
62
CALL_SUBTEST_4( eigen2support(
Matrix3f
()) );
swap.cpp
79
CALL_SUBTEST_1( swap(
Matrix3f
()) ); // fixed size, no vectorization
unalignedassert.cpp
87
construct_at_boundary<
Matrix3f
>(4);
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
LevelsV4.java
36
Matrix3f
satMatrix = new
Matrix3f
();
/external/eigen/test/eigen2/
eigen2_inverse.cpp
57
CALL_SUBTEST_3( inverse(
Matrix3f
()) );
eigen2_swap.cpp
79
CALL_SUBTEST_1( swap(
Matrix3f
()) ); // fixed size, no vectorization
/external/eigen/unsupported/test/
svd_common.h
240
VERIFY_IS_APPROX(svd2.matrixU(),
Matrix3f
::Identity());
241
VERIFY_IS_APPROX(svd2.matrixV(),
Matrix3f
::Identity());
251
VERIFY_IS_APPROX(svd2.matrixU(),
Matrix3f
::Identity());
252
VERIFY_IS_APPROX(svd2.matrixV(),
Matrix3f
::Identity());
jacobisvd.cpp
143
CALL_SUBTEST_3(( jacobisvd_verify_assert(
Matrix3f
()) ));
165
CALL_SUBTEST_3(( jacobisvd<
Matrix3f
>() ));
187
CALL_SUBTEST_3(( jacobisvd_method<
Matrix3f
>() ));
bdcsvd.cpp
165
CALL_SUBTEST_3(( bdcsvd_verify_assert(
Matrix3f
()) ));
190
// CALL_SUBTEST_3(( bdcsvd<
Matrix3f
>() ));
/development/samples/RenderScript/Levels/src/com/android/rs/levels/
LevelsRSActivity.java
27
import android.renderscript.
Matrix3f
;
57
Matrix3f
satMatrix = new
Matrix3f
();
LevelsDalvikActivity.java
24
import android.renderscript.
Matrix3f
;
51
Matrix3f
satMatrix = new
Matrix3f
();
/frameworks/rs/java/tests/ScriptGroupTest/src/com/android/rs/sgtest/
Filters.java
25
import android.renderscript.
Matrix3f
;
167
private
Matrix3f
mSatMatrix;
178
Matrix3f
satMatrix = new
Matrix3f
();
/cts/tests/tests/renderscript/src/android/renderscript/cts/
FieldPackerTest.java
36
import android.renderscript.
Matrix3f
;
73
fp.addMatrix(new
Matrix3f
());
Completed in 388 milliseconds
1
2
3
4