/frameworks/base/rs/java/android/renderscript/ |
D | Double2.java | 28 public class Double2 { class 32 public Double2() { in Double2() method in Double2 36 public Double2(Double2 data) { in Double2() method in Double2 41 public Double2(double x, double y) { in Double2() method in Double2 53 public static Double2 add(Double2 a, Double2 b) { in add() 54 Double2 res = new Double2(); in add() 66 public void add(Double2 value) { in add() 88 public static Double2 add(Double2 a, double b) { in add() 89 Double2 res = new Double2(); in add() 101 public void sub(Double2 value) { in sub() [all …]
|
D | FieldPacker.java | 288 public void addF64(Double2 v) { in addF64() 455 public Double2 subDouble2() { in subDouble2() 456 Double2 v = new Double2(); in subDouble2() 745 if (obj instanceof Double2) { in add() 746 addF64((Double2)obj); in add()
|
D | ScriptIntrinsicBLAS.java | 390 …public void ZGEMV(@Transpose int TransA, Double2 alpha, Allocation A, Allocation X, int incX, Doub… in ZGEMV() 526 … ZGBMV(@Transpose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X, int incX,… in ZGBMV() 2058 …public void ZHEMV(@Uplo int Uplo, Double2 alpha, Allocation A, Allocation X, int incX, Double2 bet… in ZHEMV() 2087 …public void ZHBMV(@Uplo int Uplo, int K, Double2 alpha, Allocation A, Allocation X, int incX, Doub… in ZHBMV() 2119 …public void ZHPMV(@Uplo int Uplo, Double2 alpha, Allocation Ap, Allocation X, int incX, Double2 be… in ZHPMV() 2138 public void ZGERU(Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in ZGERU() 2158 public void ZGERC(Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in ZGERC() 2224 …public void ZHER2(@Uplo int Uplo, Double2 alpha, Allocation X, int incX, Allocation Y, int incY, A… in ZHER2() 2252 …public void ZHPR2(@Uplo int Uplo, Double2 alpha, Allocation X, int incX, Allocation Y, int incY, A… in ZHPR2() 2453 public void ZGEMM(@Transpose int TransA, @Transpose int TransB, Double2 alpha, Allocation A, in ZGEMM() [all …]
|
/frameworks/rs/support/java/src/androidx/renderscript/ |
D | Double2.java | 32 public class Double2 { class 33 public Double2() { in Double2() method in Double2 36 public Double2(double initX, double initY) { in Double2() method in Double2
|
D | FieldPacker.java | 289 public void addF64(Double2 v) { in addF64() 456 public Double2 subDouble2() { in subDouble2() 457 Double2 v = new Double2(); in subDouble2() 746 if (obj instanceof Double2) { in addToPack() 747 fp.addF64((Double2)obj); in addToPack() 871 if (obj instanceof Double2) { in getPackedSize()
|
D | ScriptIntrinsicBLAS.java | 427 …public void ZGEMV(@Transpose int TransA, Double2 alpha, Allocation A, Allocation X, int incX, Doub… in ZGEMV() 603 … ZGBMV(@Transpose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X, int incX,… in ZGBMV() 2575 …public void ZHEMV(@Uplo int Uplo, Double2 alpha, Allocation A, Allocation X, int incX, Double2 bet… in ZHEMV() 2614 …public void ZHBMV(@Uplo int Uplo, int K, Double2 alpha, Allocation A, Allocation X, int incX, Doub… in ZHBMV() 2656 …public void ZHPMV(@Uplo int Uplo, Double2 alpha, Allocation Ap, Allocation X, int incX, Double2 be… in ZHPMV() 2685 public void ZGERU(Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in ZGERU() 2715 public void ZGERC(Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in ZGERC() 2807 …public void ZHER2(@Uplo int Uplo, Double2 alpha, Allocation X, int incX, Allocation Y, int incY, A… in ZHER2() 2845 …public void ZHPR2(@Uplo int Uplo, Double2 alpha, Allocation X, int incX, Allocation Y, int incY, A… in ZHPR2() 3086 public void ZGEMM(@Transpose int TransA, @Transpose int TransB, Double2 alpha, Allocation A, in ZGEMM() [all …]
|
/frameworks/rs/cpp/ |
D | rsCppStructs.h | 322 class Double2 { 326 Double2(double initX, double initY) in Double2() function 328 Double2() : x(0), y(0) {} in Double2() function 1907 Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, 1908 Double2 beta, const sp<Allocation>& Y, int incY); 2019 … int KL, int KU, Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, 2020 Double2 beta, const sp<Allocation>& Y, int incY); 3055 void ZHEMV(RsBlasUplo Uplo, Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, 3056 int incX, Double2 beta, const sp<Allocation>& Y, int incY); 3081 …void ZHBMV(RsBlasUplo Uplo, int K, Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, [all …]
|
D | ScriptIntrinsicBLAS.cpp | 246 void ScriptIntrinsicBLAS::ZGEMV(RsBlasTranspose TransA, Double2 alpha, const sp<Allocation>& A, con… in ZGEMV() 247 int incX, Double2 beta, const sp<Allocation>& Y, int incY) { in ZGEMV() 305 void ScriptIntrinsicBLAS::ZGBMV(RsBlasTranspose TransA, int KL, int KU, Double2 alpha, const sp<All… in ZGBMV() 306 … const sp<Allocation>& X, int incX, Double2 beta, const sp<Allocation>& Y, int incY) { in ZGBMV() 1101 void ScriptIntrinsicBLAS::ZHEMV(RsBlasUplo Uplo, Double2 alpha, const sp<Allocation>& A, in ZHEMV() 1102 … const sp<Allocation>& X, int incX, Double2 beta, const sp<Allocation>& Y, int incY) { in ZHEMV() 1111 void ScriptIntrinsicBLAS::ZHBMV(RsBlasUplo Uplo, int K, Double2 alpha, const sp<Allocation>& A, con… in ZHBMV() 1112 int incX, Double2 beta, const sp<Allocation>& Y, int incY) { in ZHBMV() 1124 void ScriptIntrinsicBLAS::ZHPMV(RsBlasUplo Uplo, Double2 alpha, const sp<Allocation>& Ap, const sp<… in ZHPMV() 1125 int incX, Double2 beta, const sp<Allocation>& Y, int incY) { in ZHPMV() [all …]
|
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
D | UT_vector.java | 23 import android.renderscript.Double2; 74 Double2 D2 = s.get_d2(); in initializeGlobals()
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
D | UT_vector.java | 25 import androidx.renderscript.Double2; 76 Double2 D2 = s.get_d2(); in initializeGlobals()
|
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | UT_vector.java | 59 Double2 D2 = s.get_d2(); in initializeGlobals()
|
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/ |
D | UT_vector.java | 59 Double2 D2 = s.get_d2(); in initializeGlobals()
|
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/ |
D | UT_vector.java | 59 Double2 D2 = s.get_d2(); in initializeGlobals()
|
/frameworks/compile/slang/tests/P_reduce_general_result/ |
D | ScriptC_reduce_general_result.java.expect | 311 public Double2[] get() { 315 Double2[] result = new Double2[7]; 317 result[Idx] = new Double2(outArray[2*Idx+0], outArray[2*Idx+1]); 346 private Double2[] mResult; 1665 public Double2 get() { 1669 mResult = new Double2(outArray[0], outArray[1]); 1695 private Double2 mResult;
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 48860 Landroid/renderscript/Double2;-><init>(Landroid/renderscript/Double2;)V 48861 Landroid/renderscript/Double2;->add(D)V 48862 Landroid/renderscript/Double2;->add(Landroid/renderscript/Double2;)V 48863 Landroid/renderscript/Double2;->add(Landroid/renderscript/Double2;D)Landroid/renderscript/Double2; 48864 Landroid/renderscript/Double2;->add(Landroid/renderscript/Double2;Landroid/renderscript/Double2;)La… 48865 Landroid/renderscript/Double2;->addAt(ID)V 48866 Landroid/renderscript/Double2;->addMultiple(Landroid/renderscript/Double2;D)V 48867 Landroid/renderscript/Double2;->copyTo([DI)V 48868 Landroid/renderscript/Double2;->div(D)V 48869 Landroid/renderscript/Double2;->div(Landroid/renderscript/Double2;)V [all …]
|
/frameworks/base/core/api/ |
D | current.txt | 36164 @Deprecated public class Double2 { 36165 ctor @Deprecated public Double2(); 36166 ctor @Deprecated public Double2(double, double); 36331 method @Deprecated public void addF64(android.renderscript.Double2); 36379 method @Deprecated public android.renderscript.Double2 subDouble2(); 36839 … android.renderscript.Double2, android.renderscript.Allocation, android.renderscript.Allocation, i… 36840 …nt, android.renderscript.Double2, android.renderscript.Allocation, android.renderscript.Allocation… 36841 … android.renderscript.Double2, android.renderscript.Allocation, android.renderscript.Allocation, i… 36842 …method @Deprecated public void ZGERC(android.renderscript.Double2, android.renderscript.Allocation… 36843 …method @Deprecated public void ZGERU(android.renderscript.Double2, android.renderscript.Allocation… [all …]
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 26031 public class Double2 { 26032 ctor public Double2(); 26033 ctor public Double2(double, double); 26197 method public void addF64(android.renderscript.Double2); 26245 method public android.renderscript.Double2 subDouble2();
|