HomeSort by relevance Sort by last modified time
    Searched full:rs_matrix3x3 (Results 1 - 25 of 40) sorted by null

1 2

  /frameworks/compile/slang/tests/P_refcount/
refcount.rs 8 rs_matrix3x3 m;
  /frameworks/rs/
rsMatrix3x3.h 27 struct Matrix3x3 : public rs_matrix3x3 {
38 void load(const rs_matrix3x3 *);
40 void loadMultiply(const rs_matrix3x3 *lhs, const rs_matrix3x3 *rhs);
44 void multiply(const rs_matrix3x3 *rhs) {
rsRuntime.h 162 void rsrMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v);
163 float rsrMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col);
167 void rsrMatrixLoadIdentity_3x3(rs_matrix3x3 *m);
170 void rsrMatrixLoad_3x3_f(rs_matrix3x3 *m, const float *v);
173 void rsrMatrixLoad_4x4_3x3(rs_matrix4x4 *m, const rs_matrix3x3 *v);
175 void rsrMatrixLoad_3x3_3x3(rs_matrix3x3 *m, const rs_matrix3x3 *v);
183 void rsrMatrixLoadMultiply_3x3_3x3_3x3(rs_matrix3x3 *m, const rs_matrix3x3 *lhs,
184 const rs_matrix3x3 *rhs)
    [all...]
rsMatrix3x3.cpp 44 void Matrix3x3::load(const rs_matrix3x3 *v) {
48 void Matrix3x3::loadMultiply(const rs_matrix3x3 *lhs, const rs_matrix3x3 *rhs) {
rsMatrix4x4.h 39 void load(const rs_matrix3x3 *);
rsDefines.h 68 } rs_matrix3x3; typedef in typeref:struct:__anon20264
  /frameworks/rs/scriptc/
rs_matrix.rsh 42 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v);
64 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col);
80 extern void __attribute__((overloadable)) rsMatrixLoadIdentity(rs_matrix3x3 *m);
95 extern void __attribute__((overloadable)) rsMatrixLoad(rs_matrix3x3 *m, const float *v);
107 extern void __attribute__((overloadable)) rsMatrixLoad(rs_matrix4x4 *m, const rs_matrix3x3 *v);
118 extern void __attribute__((overloadable)) rsMatrixLoad(rs_matrix3x3 *m, const rs_matrix3x3 *v);
171 rsMatrixLoadMultiply(rs_matrix3x3 *m, const rs_matrix3x3 *lhs, const rs_matrix3x3 *rhs)
    [all...]
rs_debug.rsh 79 rsDebug(const char *, const rs_matrix3x3 *);
  /prebuilts/sdk/renderscript/include/
rs_matrix.rsh 42 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v);
64 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col);
80 extern void __attribute__((overloadable)) rsMatrixLoadIdentity(rs_matrix3x3 *m);
95 extern void __attribute__((overloadable)) rsMatrixLoad(rs_matrix3x3 *m, const float *v);
107 extern void __attribute__((overloadable)) rsMatrixLoad(rs_matrix4x4 *m, const rs_matrix3x3 *v);
118 extern void __attribute__((overloadable)) rsMatrixLoad(rs_matrix3x3 *m, const rs_matrix3x3 *v);
171 rsMatrixLoadMultiply(rs_matrix3x3 *m, const rs_matrix3x3 *lhs, const rs_matrix3x3 *rhs)
    [all...]
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
rstypes.rs 11 rs_matrix3x3 matrix3x3Test;
23 rs_matrix3x3 matrix3x3TestLocal;
  /frameworks/compile/libbcc/lib/Renderscript/runtime/
rs_matrix.c 37 rsMatrixLoadIdentity(rs_matrix3x3 *m) {
76 rsMatrixLoad(rs_matrix3x3 *m, const float *f) {
115 rsMatrixLoad(rs_matrix4x4 *m, const rs_matrix3x3 *v) {
153 rsMatrixLoad(rs_matrix3x3 *m, const rs_matrix3x3 *s) {
184 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v) {
189 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col) {
231 rsMatrixMultiply(rs_matrix3x3 *m, float3 in) {
232 return rsMatrixMultiply((const rs_matrix3x3 *)m, in);
236 rsMatrixMultiply(rs_matrix3x3 *m, float2 in)
    [all...]
matrix.ll 6 %struct.rs_matrix3x3 = type { [9 x float] }
18 define <3 x float> @_Z16rsMatrixMultiplyPK12rs_matrix3x3Dv3_f(%struct.rs_matrix3x3* nocapture %m, <3 x float> %in) nounwind readonly {
26 %px = getelementptr inbounds %struct.rs_matrix3x3* %m, i32 0, i32 0, i32 0
29 %py = getelementptr inbounds %struct.rs_matrix3x3* %m, i32 0, i32 0, i32 3
32 %pz = getelementptr inbounds %struct.rs_matrix3x3* %m, i32 0, i32 0, i32 6
46 define <3 x float> @_Z16rsMatrixMultiplyP12rs_matrix3x3Dv3_f(%struct.rs_matrix3x3* nocapture %m, <3 x float> %in) nounwind readonly {
47 %r = tail call <3 x float> @_Z16rsMatrixMultiplyPK12rs_matrix3x3Dv3_f(%struct.rs_matrix3x3* nocapture %m, <3 x float> %in) nounwind
51 define <3 x float> @_Z16rsMatrixMultiplyPK12rs_matrix3x3Dv2_f(%struct.rs_matrix3x3* nocapture %m, <2 x float> %in) nounwind readonly {
57 %px = getelementptr inbounds %struct.rs_matrix3x3* %m, i32 0, i32 0, i32 0
60 %py = getelementptr inbounds %struct.rs_matrix3x3* %m, i32 0, i32 0, i32
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
rstypes.rs 17 rs_matrix3x3 matrix3x3Test;
29 rs_matrix3x3 matrix3x3TestLocal;
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
rstypes.rs 17 rs_matrix3x3 matrix3x3Test;
29 rs_matrix3x3 matrix3x3TestLocal;
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
rstypes.rs 17 rs_matrix3x3 matrix3x3Test;
29 rs_matrix3x3 matrix3x3TestLocal;
  /frameworks/base/docs/html/reference/renderscript/
structrs__matrix3x3.html 6 <title>rs_matrix3x3 Struct Reference</title>
28 <div class="title">rs_matrix3x3 Struct Reference</div> </div>
31 <!-- doxytag: class="rs_matrix3x3" -->
rs__matrix_8rsh_source.html 52 <a name="l00042"></a>00042 <a class="code" href="rs__matrix_8rsh.html#ad6ea242218e0f1a031f754df0317e6e7">rsMatrixSet</a>(<a class="code" href="structrs__matrix3x3.html" title="3x3 float matrix">rs_matrix3x3</a> *m, <a class="code" href="rs__types_8rsh.html#a435d1572bf3f880d55459d9805097f62">uint32_t</a> row, <a class="code" href="rs__types_8rsh.html#a435d1572bf3f880d55459d9805097f62">uint32_t</a> col, <span class="keywordtype">float</span> v);
59 <a name="l00064"></a>00064 <a class="code" href="rs__matrix_8rsh.html#a22e983b67d3089c5cb97032e249ca335">rsMatrixGet</a>(const <a class="code" href="structrs__matrix3x3.html" title="3x3 float matrix">rs_matrix3x3</a> *m, <a class="code" href="rs__types_8rsh.html#a435d1572bf3f880d55459d9805097f62">uint32_t</a> row, <a class="code" href="rs__types_8rsh.html#a435d1572bf3f880d55459d9805097f62">uint32_t</a> col);
64 <a name="l00080"></a>00080 extern <span class="keywordtype">void</span> __attribute__((overloadable)) <a class="code" href="rs__matrix_8rsh.html#a0ffd9de971cf10d0a663ff565be8d3cc">rsMatrixLoadIdentity</a>(<a class="code" href="structrs__matrix3x3.html" title="3x3 float matrix">rs_matrix3x3</a> *m);
68 <a name="l00095"></a>00095 extern <span class="keywordtype">void</span> __attribute__((overloadable)) <a class="code" href="rs__matrix_8rsh.html#ac380c4117e047da494a74f0dad20fab3">rsMatrixLoad</a>(<a class="code" href="structrs__matrix3x3.html" title="3x3 float matrix">rs_matrix3x3</a> *m, const <span class="keywordtype">float</span> *v);
71 <a name="l00107"></a>00107 extern <span class="keywordtype">void</span> __attribute__((overloadable)) <a class="code" href="rs__matrix_8rsh.html#ac380c4117e047da494a74f0dad20fab3">rsMatrixLoad</a>(<a class="code" href="structrs__matrix4x4.html" title="4x4 float matrix">rs_matrix4x4</a> *m, const <a class="code" href="structrs__matrix3x3.html" title="3x3 float matrix">rs_matrix3x3</a> *v);
74 <a name="l00118"></a>00118 extern <span class="keywordtype">void</span> __attribute__((overloadable)) <a class="code" href="rs__matrix_8rsh.html#ac380c4117e047da494a74f0dad20fab3">rsMatrixLoad</a>(<a class="code" href="structrs__matrix3x3.html" title="3x3 float matrix">rs_matrix3x3</a> *m, const <a class="code" href="structrs__matrix3x3.html" title="3x3 float matrix">rs_matrix3x3</a> *v);
89 <a name="l00171"></a>00171 <a class="code" href="rs__matrix_8rsh.html#a79f14c4c0f5ecc1bbd0bf54da8b653ef">rsMatrixLoadMultiply</a>(<a class="code" href="structrs__matrix3x3.html" title="3x3 float matrix">rs_matrix3x3</a> *m, const <a class="code" href="structrs__matrix3x3.html" title="3x3 float matrix">rs_matrix3x3</a> *lhs, const <a class="code" href="structrs__matrix3x3.html" title="3x3 float matrix">rs_matrix3x3</a> *rhs)
    [all...]
rs__matrix_8rsh.html 37 <tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="rs__matrix_8rsh.html#ab69543f85a673f23fbb5f893e5824395">rsMatrixSet</a> (<a class="el" href="structrs__matrix3x3.html">rs_matrix3x3</a> *m, <a class="el" href="rs__types_8rsh.html#a435d1572bf3f880d55459d9805097f62">uint32_t</a> row, <a class="el" href="rs__types_8rsh.html#a435d1572bf3f880d55459d9805097f62">uint32_t</a> col, float v)</td></tr>
40 <tr><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="rs__matrix_8rsh.html#ad485084684991796cffdd8a008557569">rsMatrixGet</a> (const <a class="el" href="structrs__matrix3x3.html">rs_matrix3x3</a> *m, <a class="el" href="rs__types_8rsh.html#a435d1572bf3f880d55459d9805097f62">uint32_t</a> row, <a class="el" href="rs__types_8rsh.html#a435d1572bf3f880d55459d9805097f62">uint32_t</a> col)</td></tr>
43 <tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="rs__matrix_8rsh.html#a5b31e83553efa947db2198674d5db043">rsMatrixLoadIdentity</a> (<a class="el" href="structrs__matrix3x3.html">rs_matrix3x3</a> *m)</td></tr>
46 <tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="rs__matrix_8rsh.html#aef942535c5d56072125dcf5244970ea2">rsMatrixLoad</a> (<a class="el" href="structrs__matrix3x3.html">rs_matrix3x3</a> *m, const float *v)</td></tr>
49 <tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="rs__matrix_8rsh.html#a06176acb38405937cb94c835a712a3b3">rsMatrixLoad</a> (<a class="el" href="structrs__matrix4x4.html">rs_matrix4x4</a> *m, const <a class="el" href="structrs__matrix3x3.html">rs_matrix3x3</a> *v)</td></tr>
51 <tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="rs__matrix_8rsh.html#a654e5abe095770979d740f7b55382bd0">rsMatrixLoad</a> (<a class="el" href="structrs__matrix3x3.html">rs_matrix3x3</a> *m, const <a class="el" href="structrs__matrix3x3.html">rs_matrix3x3</a> *v)</td></tr>
57 <tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="rs__matrix_8rsh.html#a78872343ea6a5c1a846160ccdc4add52">rsMatrixLoadMultiply</a> (<a class="el" href="structrs__matrix3x3.html">rs_matrix3x3</a> *m, const <a class="el" href="structrs__matrix3x3.html">rs_matrix3x3</a> *lhs, const <a class="el" href="structrs__matrix3x3.html">rs_matrix3x3</a> *rhs)</td></tr
    [all...]
annotated.html 36 <tr><td class="indexkey"><a class="el" href="structrs__matrix3x3.html">rs_matrix3x3</a></td><td class="indexvalue">3x3 float matrix </td></tr>
  /development/samples/RenderScript/Levels/src/com/android/rs/levels/
levels.rs 26 rs_matrix3x3 colorMat;
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
levels.rsh 22 rs_matrix3x3 colorMat;
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
levels.rsh 22 rs_matrix3x3 colorMat;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
levels.rsh 22 rs_matrix3x3 colorMat;
  /frameworks/compile/slang/
slang_rs_type_spec.h 48 ENUM_RS_MATRIX_DATA_TYPE(RSMatrix3x3, "rs_matrix3x3", 3) \
  /frameworks/base/graphics/java/android/renderscript/
Matrix3f.java 24 * Class for exposing the native RenderScript rs_matrix3x3 type back to the Android system.

Completed in 650 milliseconds

1 2