Searched refs:incX (Results 1 - 11 of 11) sorted by relevance

/frameworks/rs/cpu_ref/
H A DrsCpuBLASDispatch.h27 const float *X, const int incX, const float beta,
33 const int incX, const float beta, float *Y, const int incY);
37 float *X, const int incX);
41 float *X, const int incX);
44 const int N, const float *Ap, float *X, const int incX);
48 const int incX);
52 float *X, const int incX);
55 const int N, const float *Ap, float *X, const int incX);
60 const double *X, const int incX, const double beta,
66 const int incX, cons
[all...]
H A DrsCpuIntrinsicBLAS.cpp281 lda, (float*)X, call->incX, call->beta.f, (float*)Y, call->incY);
286 call->alpha.f, (float*)A, lda, (float*)X, call->incX,
292 lda, (float*)X, call->incX);
297 lda, (float*)X, call->incX);
303 (float*)X, call->incX);
308 (float*)X, call->incX);
313 lda, (float*)X, call->incX);
318 (float*)X, call->incX);
323 lda, (double*)X, call->incX, call->beta.d, (double*)Y, call->incY);
328 call->alpha.d, (double*)A, lda, (double*)X, call->incX,
[all...]
/frameworks/rs/cpp/
H A DScriptIntrinsicBLAS.cpp52 int M, int N, int K, int incX, int incY, int KL, int KU,
98 call.incX = incX;
110 float beta, RsAllocation C, int incX, int incY, int KL, int KU) {
112 M, N, K, incX, incY, KL, KU, alpha, beta, 0.0, 0.0,
124 double beta, RsAllocation C, int incX, int incY, int KL, int KU) {
126 M, N, K, incX, incY, KL, KU, 0.0f, 0.0f, alpha, beta,
137 float betaX, float betaY, RsAllocation C, int incX, int incY, int KL, int KU) {
139 M, N, K, incX, incY, KL, KU, 0.0f, 0.0f, 0.0, 0.0,
150 double betaX, double betaY, RsAllocation C, int incX, in
50 setUpBLASCall(RsBlasDataType dataType, RsBlasFunction func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, int incX, int incY, int KL, int KU, float alphaF, float betaF, double alphaD, double betaD, float alphaCX, float alphaCY, float betaCX, float betaCY, double alphaZX, double alphaZY, double betaZX, double betaZY ) argument
107 nScriptIntrinsicBLAS_Single(RS* mRS, RsContext con, RsScript id, RsBlasFunction func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alpha, RsAllocation A, RsAllocation B, float beta, RsAllocation C, int incX, int incY, int KL, int KU) argument
121 nScriptIntrinsicBLAS_Double(RS* mRS, RsContext con, RsScript id, RsBlasFunction func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alpha, RsAllocation A, RsAllocation B, double beta, RsAllocation C, int incX, int incY, int KL, int KU) argument
134 nScriptIntrinsicBLAS_Complex(RS* mRS, RsContext con, RsScript id, RsBlasFunction func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alphaX, float alphaY, RsAllocation A, RsAllocation B, float betaX, float betaY, RsAllocation C, int incX, int incY, int KL, int KU) argument
147 nScriptIntrinsicBLAS_Z(RS* mRS, RsContext con, RsScript id, RsBlasFunction func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, RsAllocation A, RsAllocation B, double betaX, double betaY, RsAllocation C, int incX, int incY, int KL, int KU) argument
183 validateGEMV(RS* mRS, const sp<const Element>& e, RsBlasTranspose TransA, const sp<Allocation>& A, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY) argument
213 SGEMV(RsBlasTranspose TransA, float alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, float beta, const sp<Allocation>& Y, int incY) argument
224 DGEMV(RsBlasTranspose TransA, double alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, double beta, const sp<Allocation>& Y, int incY) argument
235 CGEMV(RsBlasTranspose TransA, Float2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, Float2 beta, const sp<Allocation>& Y, int incY) argument
246 ZGEMV(RsBlasTranspose TransA, Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, Double2 beta, const sp<Allocation>& Y, int incY) argument
257 SGBMV(RsBlasTranspose TransA, int KL, int KU, float alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, float beta, const sp<Allocation>& Y, int incY) argument
273 DGBMV(RsBlasTranspose TransA, int KL, int KU, double alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, double beta, const sp<Allocation>& Y, int incY) argument
289 CGBMV(RsBlasTranspose TransA, int KL, int KU, Float2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, Float2 beta, const sp<Allocation>& Y, int incY) argument
305 ZGBMV(RsBlasTranspose TransA, int KL, int KU, Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, Double2 beta, const sp<Allocation>& Y, int incY) argument
321 validateTRMV(RS* mRS, const sp<const Element>& e, RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
344 validateTPMV(RS* mRS, const sp<const Element>& e, RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) argument
374 STRMV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
383 DTRMV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
392 CTRMV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
401 ZTRMV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
410 STBMV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
423 DTBMV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
436 CTBMV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
449 ZTBMV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
462 STPMV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) argument
470 DTPMV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) argument
478 CTPMV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) argument
486 ZTPMV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) argument
494 STRSV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
504 DTRSV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
515 CTRSV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
526 ZTRSV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
537 STBSV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
550 DTBSV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
563 CTBSV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
576 ZTBSV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) argument
589 STPSV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) argument
598 DTPSV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) argument
607 CTPSV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) argument
616 ZTPSV(RsBlasUplo Uplo, RsBlasTranspose TransA, RsBlasDiag Diag, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) argument
628 validateSYMV(RS* mRS, const sp<const Element>& e, RsBlasUplo Uplo, const sp<Allocation>& A, const sp<Allocation>& X, const sp<Allocation>& Y, int incX, int incY) argument
656 validateSPMV(RS* mRS, const sp<const Element>& e, RsBlasUplo Uplo, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY) argument
689 validateGER(RS* mRS, const sp<const Element>& e, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
721 validateSYR(RS* mRS, const sp<const Element>& e, RsBlasUplo Uplo, const sp<Allocation>& X, int incX, const sp<Allocation>& A) argument
745 validateSPR(RS* mRS, const sp<const Element>& e, RsBlasUplo Uplo, const sp<Allocation>& X, int incX, const sp<Allocation>& Ap) argument
774 validateSYR2(RS* mRS, const sp<const Element>& e, RsBlasUplo Uplo, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
802 validateSPR2(RS* mRS, const sp<const Element>& e, RsBlasUplo Uplo, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& Ap) argument
833 SSYMV(RsBlasUplo Uplo, float alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, float beta, const sp<Allocation>& Y, int incY) argument
841 SSBMV(RsBlasUplo Uplo, int K, float alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, float beta, const sp<Allocation>& Y, int incY) argument
853 SSPMV(RsBlasUplo Uplo, float alpha, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX, float beta, const sp<Allocation>& Y, int incY) argument
861 SGER(float alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
871 SSYR(RsBlasUplo Uplo, float alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& A) argument
879 SSPR(RsBlasUplo Uplo, float alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Ap) argument
887 SSYR2(RsBlasUplo Uplo, float alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
895 SSPR2(RsBlasUplo Uplo, float alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& Ap) argument
903 DSYMV(RsBlasUplo Uplo, double alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, double beta, const sp<Allocation>& Y, int incY) argument
911 DSBMV(RsBlasUplo Uplo, int K, double alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, double beta, const sp<Allocation>& Y, int incY) argument
923 DSPMV(RsBlasUplo Uplo, double alpha, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX, double beta, const sp<Allocation>& Y, int incY) argument
931 DGER(double alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
941 DSYR(RsBlasUplo Uplo, double alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& A) argument
949 DSPR(RsBlasUplo Uplo, double alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Ap) argument
957 DSYR2(RsBlasUplo Uplo, double alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
965 DSPR2(RsBlasUplo Uplo, double alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& Ap) argument
978 validateGERU(RS* mRS, const sp<const Element>& e, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
1005 CHEMV(RsBlasUplo Uplo, Float2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, Float2 beta, const sp<Allocation>& Y, int incY) argument
1015 CHBMV(RsBlasUplo Uplo, int K, Float2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, Float2 beta, const sp<Allocation>& Y, int incY) argument
1028 CHPMV(RsBlasUplo Uplo, Float2 alpha, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX, Float2 beta, const sp<Allocation>& Y, int incY) argument
1038 CGERU(Float2 alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
1049 CGERC(Float2 alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
1061 CHER(RsBlasUplo Uplo, float alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& A) argument
1071 CHPR(RsBlasUplo Uplo, float alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Ap) argument
1081 CHER2(RsBlasUplo Uplo, Float2 alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
1091 CHPR2(RsBlasUplo Uplo, Float2 alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& Ap) argument
1101 ZHEMV(RsBlasUplo Uplo, Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, Double2 beta, const sp<Allocation>& Y, int incY) argument
1111 ZHBMV(RsBlasUplo Uplo, int K, Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, Double2 beta, const sp<Allocation>& Y, int incY) argument
1124 ZHPMV(RsBlasUplo Uplo, Double2 alpha, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX, Double2 beta, const sp<Allocation>& Y, int incY) argument
1134 ZGERU(Double2 alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
1145 ZGERC(Double2 alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
1157 ZHER(RsBlasUplo Uplo, double alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& A) argument
1167 ZHPR(RsBlasUplo Uplo, double alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Ap) argument
1177 ZHER2(RsBlasUplo Uplo, Double2 alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) argument
1187 ZHPR2(RsBlasUplo Uplo, Double2 alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& Ap) argument
[all...]
H A DrsCppStructs.h1844 * @param incX The increment for the elements of vector x, must be larger than zero.
1850 float alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX,
1863 * @param incX The increment for the elements of vector x, must be larger than zero.
1869 double alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX,
1882 * @param incX The increment for the elements of vector x, must be larger than zero.
1888 Float2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX,
1901 * @param incX The increment for the elements of vector x, must be larger than zero.
1907 Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX,
1929 * @param incX The increment for the elements of vector x, must be larger than zero.
1935 int KL, int KU, float alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX,
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsicBLAS.java275 static void validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) { argument
288 if (incX <= 0 || incY <= 0) {
293 expectedXDim = 1 + (N - 1) * incX;
296 expectedXDim = 1 + (M - 1) * incX;
315 * @param incX The increment for the elements of vector x, must be larger than zero.
320 public void SGEMV(@Transpose int TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { argument
321 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY);
324 mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, 0, 0);
337 * @param incX The increment for the elements of vector x, must be larger than zero.
342 public void DGEMV(@Transpose int TransA, double alpha, Allocation A, Allocation X, int incX, doubl argument
364 CGEMV(@ranspose int TransA, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) argument
386 ZGEMV(@ranspose int TransA, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) argument
417 SGBMV(@ranspose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) argument
452 DGBMV(@ranspose int TransA, int KL, int KU, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) argument
487 CGBMV(@ranspose int TransA, int KL, int KU, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) argument
522 ZGBMV(@ranspose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) argument
533 validateTRMV(Element e, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
558 validateTPMV(Element e, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
603 STRMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
622 DTRMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
641 CTRMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
660 ZTRMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
687 STBMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
718 DTBMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
749 CTBMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
780 ZTBMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
811 STPMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
837 DTPMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
863 CTPMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
889 ZTPMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
907 STRSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
928 DTRSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
949 CTRSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
970 ZTRSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
999 STBSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
1030 DTBSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
1061 CTBSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
1092 ZTBSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
1123 STPSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
1150 DTPSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
1177 CTPSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
1204 ZTPSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
1213 validateSYMV(Element e, @Uplo int Uplo, Allocation A, Allocation X, Allocation Y, int incX, int incY) argument
1241 validateSPMV(Element e, @Uplo int Uplo, Allocation Ap, Allocation X, int incX, Allocation Y, int incY) argument
1274 validateGER(Element e, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1305 validateSYR(Element e, @Uplo int Uplo, Allocation X, int incX, Allocation A) argument
1329 validateSPR(Element e, @Uplo int Uplo, Allocation X, int incX, Allocation Ap) argument
1358 validateSYR2(Element e, @Uplo int Uplo, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1386 validateSPR2(Element e, @Uplo int Uplo, Allocation X, int incX, Allocation Y, int incY, Allocation Ap) argument
1432 SSYMV(@plo int Uplo, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) argument
1460 SSBMV(@plo int Uplo, int K, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) argument
1492 SSPMV(@plo int Uplo, float alpha, Allocation Ap, Allocation X, int incX, float beta, Allocation Y, int incY) argument
1510 SGER(float alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1529 SSYR(@plo int Uplo, float alpha, Allocation X, int incX, Allocation A) argument
1554 SSPR(@plo int Uplo, float alpha, Allocation X, int incX, Allocation Ap) argument
1573 SSYR2(@plo int Uplo, float alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1600 SSPR2(@plo int Uplo, float alpha, Allocation X, int incX, Allocation Y, int incY, Allocation Ap) argument
1620 DSYMV(@plo int Uplo, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) argument
1648 DSBMV(@plo int Uplo, int K, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) argument
1680 DSPMV(@plo int Uplo, double alpha, Allocation Ap, Allocation X, int incX, double beta, Allocation Y, int incY) argument
1698 DGER(double alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1717 DSYR(@plo int Uplo, double alpha, Allocation X, int incX, Allocation A) argument
1742 DSPR(@plo int Uplo, double alpha, Allocation X, int incX, Allocation Ap) argument
1761 DSYR2(@plo int Uplo, double alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1788 DSPR2(@plo int Uplo, double alpha, Allocation X, int incX, Allocation Y, int incY, Allocation Ap) argument
1798 validateGERU(Element e, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1839 CHEMV(@plo int Uplo, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) argument
1868 CHBMV(@plo int Uplo, int K, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) argument
1900 CHPMV(@plo int Uplo, Float2 alpha, Allocation Ap, Allocation X, int incX, Float2 beta, Allocation Y, int incY) argument
1919 CGERU(Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1939 CGERC(Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1959 CHER(@plo int Uplo, float alpha, Allocation X, int incX, Allocation A) argument
1985 CHPR(@plo int Uplo, float alpha, Allocation X, int incX, Allocation Ap) argument
2005 CHER2(@plo int Uplo, Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2033 CHPR2(@plo int Uplo, Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation Ap) argument
2054 ZHEMV(@plo int Uplo, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) argument
2083 ZHBMV(@plo int Uplo, int K, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) argument
2115 ZHPMV(@plo int Uplo, Double2 alpha, Allocation Ap, Allocation X, int incX, Double2 beta, Allocation Y, int incY) argument
2134 ZGERU(Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2154 ZGERC(Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2174 ZHER(@plo int Uplo, double alpha, Allocation X, int incX, Allocation A) argument
2200 ZHPR(@plo int Uplo, double alpha, Allocation X, int incX, Allocation Ap) argument
2220 ZHER2(@plo int Uplo, Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2248 ZHPR2(@plo int Uplo, Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation Ap) argument
[all...]
H A DRenderScript.java968 float alpha, long A, long B, float beta, long C, int incX, int incY,
972 float alpha, long A, long B, float beta, long C, int incX, int incY,
975 rsnScriptIntrinsicBLAS_Single(mContext, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU);
980 double alpha, long A, long B, double beta, long C, int incX, int incY,
984 double alpha, long A, long B, double beta, long C, int incX, int incY,
987 rsnScriptIntrinsicBLAS_Double(mContext, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU);
992 float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY,
996 float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY,
999 rsnScriptIntrinsicBLAS_Complex(mContext, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alphaX, alphaY, A, B, betaX, betaY, C, incX, incY, KL, KU);
1004 double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, in
966 rsnScriptIntrinsicBLAS_Single(long con, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alpha, long A, long B, float beta, long C, int incX, int incY, int KL, int KU) argument
970 nScriptIntrinsicBLAS_Single(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alpha, long A, long B, float beta, long C, int incX, int incY, int KL, int KU) argument
978 rsnScriptIntrinsicBLAS_Double(long con, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alpha, long A, long B, double beta, long C, int incX, int incY, int KL, int KU) argument
982 nScriptIntrinsicBLAS_Double(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alpha, long A, long B, double beta, long C, int incX, int incY, int KL, int KU) argument
990 rsnScriptIntrinsicBLAS_Complex(long con, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY, int KL, int KU) argument
994 nScriptIntrinsicBLAS_Complex(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY, int KL, int KU) argument
1002 rsnScriptIntrinsicBLAS_Z(long con, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, int incY, int KL, int KU) argument
1006 nScriptIntrinsicBLAS_Z(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, int incY, int KL, int KU) argument
[all...]
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicBLAS.java282 static void validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) { argument
295 if (incX <= 0 || incY <= 0) {
300 expectedXDim = 1 + (N - 1) * incX;
303 expectedXDim = 1 + (M - 1) * incX;
322 * @param incX The increment for the elements of vector x, must be larger than zero.
327 public void SGEMV(@Transpose int TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { argument
328 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY);
341 mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, aID, xID, beta, yID, incX, incY, 0, 0, mUseIncSupp);
354 * @param incX The increment for the elements of vector x, must be larger than zero.
359 public void DGEMV(@Transpose int TransA, double alpha, Allocation A, Allocation X, int incX, doubl argument
391 CGEMV(@ranspose int TransA, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) argument
423 ZGEMV(@ranspose int TransA, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) argument
464 SGBMV(@ranspose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) argument
509 DGBMV(@ranspose int TransA, int KL, int KU, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) argument
554 CGBMV(@ranspose int TransA, int KL, int KU, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) argument
599 ZGBMV(@ranspose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) argument
620 validateTRMV(Element e, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
645 validateTPMV(Element e, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
690 STRMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
717 DTRMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
744 CTRMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
771 ZTRMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
806 STBMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
845 DTBMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
884 CTBMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
923 ZTBMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
962 STPMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
996 DTPMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
1030 CTPMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
1064 ZTPMV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
1090 STRSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
1119 DTRSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
1148 CTRSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
1177 ZTRSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation X, int incX) argument
1214 STBSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
1253 DTBSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
1292 CTBSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
1331 ZTBSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Allocation X, int incX) argument
1370 STPSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
1405 DTPSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
1440 CTPSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
1475 ZTPSV(@plo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int incX) argument
1492 validateSYMV(Element e, @Uplo int Uplo, Allocation A, Allocation X, Allocation Y, int incX, int incY) argument
1520 validateSPMV(Element e, @Uplo int Uplo, Allocation Ap, Allocation X, int incX, Allocation Y, int incY) argument
1553 validateGER(Element e, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1584 validateSYR(Element e, @Uplo int Uplo, Allocation X, int incX, Allocation A) argument
1608 validateSPR(Element e, @Uplo int Uplo, Allocation X, int incX, Allocation Ap) argument
1637 validateSYR2(Element e, @Uplo int Uplo, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1665 validateSPR2(Element e, @Uplo int Uplo, Allocation X, int incX, Allocation Y, int incY, Allocation Ap) argument
1711 SSYMV(@plo int Uplo, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) argument
1749 SSBMV(@plo int Uplo, int K, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) argument
1791 SSPMV(@plo int Uplo, float alpha, Allocation Ap, Allocation X, int incX, float beta, Allocation Y, int incY) argument
1819 SGER(float alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1848 SSYR(@plo int Uplo, float alpha, Allocation X, int incX, Allocation A) argument
1881 SSPR(@plo int Uplo, float alpha, Allocation X, int incX, Allocation Ap) argument
1908 SSYR2(@plo int Uplo, float alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
1945 SSPR2(@plo int Uplo, float alpha, Allocation X, int incX, Allocation Y, int incY, Allocation Ap) argument
1975 DSYMV(@plo int Uplo, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) argument
2013 DSBMV(@plo int Uplo, int K, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) argument
2055 DSPMV(@plo int Uplo, double alpha, Allocation Ap, Allocation X, int incX, double beta, Allocation Y, int incY) argument
2083 DGER(double alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2112 DSYR(@plo int Uplo, double alpha, Allocation X, int incX, Allocation A) argument
2145 DSPR(@plo int Uplo, double alpha, Allocation X, int incX, Allocation Ap) argument
2172 DSYR2(@plo int Uplo, double alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2209 DSPR2(@plo int Uplo, double alpha, Allocation X, int incX, Allocation Y, int incY, Allocation Ap) argument
2229 validateGERU(Element e, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2270 CHEMV(@plo int Uplo, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) argument
2309 CHBMV(@plo int Uplo, int K, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) argument
2351 CHPMV(@plo int Uplo, Float2 alpha, Allocation Ap, Allocation X, int incX, Float2 beta, Allocation Y, int incY) argument
2380 CGERU(Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2410 CGERC(Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2440 CHER(@plo int Uplo, float alpha, Allocation X, int incX, Allocation A) argument
2474 CHPR(@plo int Uplo, float alpha, Allocation X, int incX, Allocation Ap) argument
2502 CHER2(@plo int Uplo, Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2540 CHPR2(@plo int Uplo, Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation Ap) argument
2571 ZHEMV(@plo int Uplo, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) argument
2610 ZHBMV(@plo int Uplo, int K, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) argument
2652 ZHPMV(@plo int Uplo, Double2 alpha, Allocation Ap, Allocation X, int incX, Double2 beta, Allocation Y, int incY) argument
2681 ZGERU(Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2711 ZGERC(Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2741 ZHER(@plo int Uplo, double alpha, Allocation X, int incX, Allocation A) argument
2775 ZHPR(@plo int Uplo, double alpha, Allocation X, int incX, Allocation Ap) argument
2803 ZHER2(@plo int Uplo, Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) argument
2841 ZHPR2(@plo int Uplo, Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation Ap) argument
[all...]
H A DRenderScript.java918 float alpha, long A, long B, float beta, long C, int incX, int incY,
922 float alpha, long A, long B, float beta, long C, int incX, int incY,
925 rsnScriptIntrinsicBLAS_Single(mContext, mIncCon, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU, mUseInc);
930 double alpha, long A, long B, double beta, long C, int incX, int incY,
934 double alpha, long A, long B, double beta, long C, int incX, int incY,
937 rsnScriptIntrinsicBLAS_Double(mContext, mIncCon, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU, mUseInc);
942 float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY,
946 float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY,
949 rsnScriptIntrinsicBLAS_Complex(mContext, mIncCon, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alphaX, alphaY, A, B, betaX, betaY, C, incX, incY, KL, KU, mUseInc);
954 double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, in
916 rsnScriptIntrinsicBLAS_Single(long con, long incCon, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alpha, long A, long B, float beta, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
920 nScriptIntrinsicBLAS_Single(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alpha, long A, long B, float beta, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
928 rsnScriptIntrinsicBLAS_Double(long con, long incCon, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alpha, long A, long B, double beta, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
932 nScriptIntrinsicBLAS_Double(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alpha, long A, long B, double beta, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
940 rsnScriptIntrinsicBLAS_Complex(long con, long incCon, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
944 nScriptIntrinsicBLAS_Complex(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
952 rsnScriptIntrinsicBLAS_Z(long con, long incCon, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
956 nScriptIntrinsicBLAS_Z(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
[all...]
/frameworks/rs/
H A DrsDefines.h465 int incX; member in struct:__anon2024
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp620 jfloat alpha, jlong A, jlong B, jfloat beta, jlong C, jint incX, jint incY,
635 call.incX = incX;
653 jdouble alpha, jlong A, jlong B, jdouble beta, jlong C, jint incX, jint incY,
668 call.incX = incX;
687 jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU) {
703 call.incX = incX;
722 jdouble betaY, jlong C, jint incX, jin
618 nScriptIntrinsicBLAS_Single(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jfloat alpha, jlong A, jlong B, jfloat beta, jlong C, jint incX, jint incY, jint KL, jint KU) argument
651 nScriptIntrinsicBLAS_Double(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jdouble alpha, jlong A, jlong B, jdouble beta, jlong C, jint incX, jint incY, jint KL, jint KU) argument
684 nScriptIntrinsicBLAS_Complex(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jfloat alphaX, jfloat alphaY, jlong A, jlong B, jfloat betaX, jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU) argument
719 nScriptIntrinsicBLAS_Z(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jdouble alphaX, jdouble alphaY, jlong A, jlong B, jdouble betaX, jdouble betaY, jlong C, jint incX, jint incY, jint KL, jint KU) argument
[all...]
/frameworks/rs/support/jni/
H A Dandroid_renderscript_RenderScript.cpp585 jfloat alpha, jlong A, jlong B, jfloat beta, jlong C, jint incX, jint incY,
600 call.incX = incX;
625 jdouble alpha, jlong A, jlong B, jdouble beta, jlong C, jint incX, jint incY,
640 call.incX = incX;
666 jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) {
682 call.incX = incX;
709 jdouble betaY, jlong C, jint incX, jin
583 nScriptIntrinsicBLAS_Single(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jfloat alpha, jlong A, jlong B, jfloat beta, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) argument
623 nScriptIntrinsicBLAS_Double(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jdouble alpha, jlong A, jlong B, jdouble beta, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) argument
663 nScriptIntrinsicBLAS_Complex(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jfloat alphaX, jfloat alphaY, jlong A, jlong B, jfloat betaX, jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) argument
706 nScriptIntrinsicBLAS_Z(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jdouble alphaX, jdouble alphaY, jlong A, jlong B, jdouble betaX, jdouble betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) argument
[all...]

Completed in 2760 milliseconds