• Home
  • Raw
  • Download

Lines Matching refs:incX

52               int M, int N, int K, int incX, int incY, int KL, int KU,  in setUpBLASCall()  argument
98 call.incX = incX; in setUpBLASCall()
110 float beta, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Single() argument
112 M, N, K, incX, incY, KL, KU, alpha, beta, 0.0, 0.0, in nScriptIntrinsicBLAS_Single()
124 double beta, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Double() argument
126 M, N, K, incX, incY, KL, KU, 0.0f, 0.0f, alpha, beta, in nScriptIntrinsicBLAS_Double()
137 … float betaX, float betaY, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Complex() argument
139 M, N, K, incX, incY, KL, KU, 0.0f, 0.0f, 0.0, 0.0, in nScriptIntrinsicBLAS_Complex()
150 … double betaX, double betaY, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Z() argument
152 M, N, K, incX, incY, KL, KU, 0.0f, 0.0f, 0.0, 0.0, in nScriptIntrinsicBLAS_Z()
184 const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY) { in validateGEMV() argument
196 if (incX <= 0 || incY <= 0) { in validateGEMV()
201 expectedXDim = 1 + (N - 1) * incX; in validateGEMV()
204 expectedXDim = 1 + (M - 1) * incX; in validateGEMV()
214 int incX, float beta, const sp<Allocation>& Y, int incY) { in SGEMV() argument
215 validateGEMV(mRS, Element::F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV()
221 beta, Y->getID(), incX, incY, 0, 0); in SGEMV()
225 int incX, double beta, const sp<Allocation>& Y, int incY) { in DGEMV() argument
226 validateGEMV(mRS, Element::F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV()
232 beta, Y->getID(), incX, incY, 0, 0); in DGEMV()
236 int incX, Float2 beta, const sp<Allocation>& Y, int incY) { in CGEMV() argument
237 validateGEMV(mRS, Element::F32_2(mRS), TransA, A, X, incX, Y, incY); in CGEMV()
243 beta.x, beta.y, Y->getID(), incX, incY, 0, 0); in CGEMV()
247 int incX, Double2 beta, const sp<Allocation>& Y, int incY) { in ZGEMV() argument
248 validateGEMV(mRS, Element::F64_2(mRS), TransA, A, X, incX, Y, incY); in ZGEMV()
254 beta.x, beta.y, Y->getID(), incX, incY, 0, 0); in ZGEMV()
258 … const sp<Allocation>& X, int incX, float beta, const sp<Allocation>& Y, int incY) { in SGBMV() argument
260 validateGEMV(mRS, Element::F32(mRS), TransA, A, X, incX, Y, incY); in SGBMV()
270 beta, Y->getID(), incX, incY, KL, KU); in SGBMV()
274 … const sp<Allocation>& X, int incX, double beta, const sp<Allocation>& Y, int incY) { in DGBMV() argument
276 validateGEMV(mRS, Element::F64(mRS), TransA, A, X, incX, Y, incY); in DGBMV()
286 beta, Y->getID(), incX, incY, KL, KU); in DGBMV()
290 … const sp<Allocation>& X, int incX, Float2 beta, const sp<Allocation>& Y, int incY) { in CGBMV() argument
292 validateGEMV(mRS, Element::F32_2(mRS), TransA, A, X, incX, Y, incY); in CGBMV()
302 beta.x, beta.y, Y->getID(), incX, incY, KL, KU); in CGBMV()
306 … const sp<Allocation>& X, int incX, Double2 beta, const sp<Allocation>& Y, int incY) { in ZGBMV() argument
308 validateGEMV(mRS, Element::F64_2(mRS), TransA, A, X, incX, Y, incY); in ZGBMV()
318 beta.x, beta.y, Y->getID(), incX, incY, KL, KU); in ZGBMV()
322 … RsBlasDiag Diag, const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in validateTRMV() argument
335 if (incX <= 0) { in validateTRMV()
338 int expectedXDim = 1 + (N - 1) * incX; in validateTRMV()
345 … RsBlasDiag Diag, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) { in validateTPMV() argument
362 if (incX <= 0) { in validateTPMV()
365 int expectedXDim = 1 + (N - 1) * incX; in validateTPMV()
375 const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in STRMV() argument
376 validateTRMV(mRS, Element::F32(mRS), Uplo, TransA, Diag, A, X, incX); in STRMV()
380 A->getID(), X->getID(), 0, 0, incX, 0, 0, 0); in STRMV()
384 const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in DTRMV() argument
385 validateTRMV(mRS, Element::F64(mRS), Uplo, TransA, Diag, A, X, incX); in DTRMV()
389 A->getID(), X->getID(), 0, 0, incX, 0, 0, 0); in DTRMV()
393 const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in CTRMV() argument
394 validateTRMV(mRS, Element::F32_2(mRS), Uplo, TransA, Diag, A, X, incX); in CTRMV()
398 A->getID(), X->getID(), 0, 0, 0, incX, 0, 0, 0); in CTRMV()
402 const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in ZTRMV() argument
403 validateTRMV(mRS, Element::F64_2(mRS), Uplo, TransA, Diag, A, X, incX); in ZTRMV()
407 A->getID(), X->getID(), 0, 0, 0, incX, 0, 0, 0); in ZTRMV()
411 int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in STBMV() argument
416 validateTRMV(mRS, Element::F32(mRS), Uplo, TransA, Diag, A, X, incX); in STBMV()
420 A->getID(), X->getID(), 0, 0, incX, 0, 0, 0); in STBMV()
424 int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in DTBMV() argument
429 validateTRMV(mRS, Element::F64(mRS), Uplo, TransA, Diag, A, X, incX); in DTBMV()
433 A->getID(), X->getID(), 0, 0, incX, 0, 0, 0); in DTBMV()
437 int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in CTBMV() argument
442 validateTRMV(mRS, Element::F32_2(mRS), Uplo, TransA, Diag, A, X, incX); in CTBMV()
446 A->getID(), X->getID(), 0, 0, 0, incX, 0, 0, 0); in CTBMV()
450 int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in ZTBMV() argument
455 validateTRMV(mRS, Element::F64_2(mRS), Uplo, TransA, Diag, A, X, incX); in ZTBMV()
459 A->getID(), X->getID(), 0, 0, 0, incX, 0, 0, 0); in ZTBMV()
463 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) { in STPMV() argument
464 int N = validateTPMV(mRS, Element::F32(mRS), Uplo, TransA, Diag, Ap, X, incX); in STPMV()
467 Ap->getID(), X->getID(), 0, 0, incX, 0, 0, 0); in STPMV()
471 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) { in DTPMV() argument
472 int N = validateTPMV(mRS, Element::F64(mRS), Uplo, TransA, Diag, Ap, X, incX); in DTPMV()
475 Ap->getID(), X->getID(), 0, 0, incX, 0, 0, 0); in DTPMV()
479 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) { in CTPMV() argument
480 int N = validateTPMV(mRS, Element::F32_2(mRS), Uplo, TransA, Diag, Ap, X, incX); in CTPMV()
483 Ap->getID(), X->getID(), 0, 0, 0, incX, 0, 0, 0); in CTPMV()
487 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) { in ZTPMV() argument
488 int N = validateTPMV(mRS, Element::F64_2(mRS), Uplo, TransA, Diag, Ap, X, incX); in ZTPMV()
491 Ap->getID(), X->getID(), 0, 0, 0, incX, 0, 0, 0); in ZTPMV()
495 const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in STRSV() argument
497 validateTRMV(mRS, Element::F32(mRS), Uplo, TransA, Diag, A, X, incX); in STRSV()
501 A->getID(), X->getID(), 0, 0, incX, 0, 0, 0); in STRSV()
505 const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in DTRSV() argument
507 validateTRMV(mRS, Element::F64(mRS), Uplo, TransA, Diag, A, X, incX); in DTRSV()
511 A->getID(), X->getID(), 0, 0, incX, 0, 0, 0); in DTRSV()
516 const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in CTRSV() argument
518 validateTRMV(mRS, Element::F32_2(mRS), Uplo, TransA, Diag, A, X, incX); in CTRSV()
522 A->getID(), X->getID(), 0, 0, 0, incX, 0, 0, 0); in CTRSV()
527 const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in ZTRSV() argument
529 validateTRMV(mRS, Element::F64_2(mRS), Uplo, TransA, Diag, A, X, incX); in ZTRSV()
533 A->getID(), X->getID(), 0, 0, 0, incX, 0, 0, 0); in ZTRSV()
538 int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in STBSV() argument
540 validateTRMV(mRS, Element::F32(mRS), Uplo, TransA, Diag, A, X, incX); in STBSV()
547 A->getID(), X->getID(), 0, 0, incX, 0, 0, 0); in STBSV()
551 int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in DTBSV() argument
553 validateTRMV(mRS, Element::F64(mRS), Uplo, TransA, Diag, A, X, incX); in DTBSV()
560 A->getID(), X->getID(), 0, 0, incX, 0, 0, 0); in DTBSV()
564 int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in CTBSV() argument
566 validateTRMV(mRS, Element::F32_2(mRS), Uplo, TransA, Diag, A, X, incX); in CTBSV()
573 0, 0, A->getID(), X->getID(), 0, 0, 0, incX, 0, 0, 0); in CTBSV()
577 int K, const sp<Allocation>& A, const sp<Allocation>& X, int incX) { in ZTBSV() argument
579 validateTRMV(mRS, Element::F64_2(mRS), Uplo, TransA, Diag, A, X, incX); in ZTBSV()
586 A->getID(), X->getID(), 0, 0, 0, incX, 0, 0, 0); in ZTBSV()
590 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) { in STPSV() argument
592 int N = validateTPMV(mRS, Element::F32(mRS), Uplo, TransA, Diag, Ap, X, incX); in STPSV()
595 Ap->getID(), X->getID(), 0, 0, incX, 0, 0, 0); in STPSV()
599 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) { in DTPSV() argument
601 int N = validateTPMV(mRS, Element::F64(mRS), Uplo, TransA, Diag, Ap, X, incX); in DTPSV()
604 Ap->getID(), X->getID(), 0, 0, incX, 0, 0, 0); in DTPSV()
608 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) { in CTPSV() argument
610 int N = validateTPMV(mRS, Element::F32_2(mRS), Uplo, TransA, Diag, Ap, X, incX); in CTPSV()
613 Ap->getID(), X->getID(), 0, 0, 0, incX, 0, 0, 0); in CTPSV()
617 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) { in ZTPSV() argument
619 int N = validateTPMV(mRS, Element::F64_2(mRS), Uplo, TransA, Diag, Ap, X, incX); in ZTPSV()
622 Ap->getID(), X->getID(), 0, 0, 0, incX, 0, 0, 0); in ZTPSV()
629 const sp<Allocation>& X, const sp<Allocation>& Y, int incX, int incY) { in validateSYMV() argument
643 if (incX <= 0 || incY <= 0) { in validateSYMV()
646 int expectedXDim = 1 + (N - 1) * incX; in validateSYMV()
657 const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY) { in validateSPMV() argument
675 if (incX <= 0 || incY <= 0) { in validateSPMV()
678 int expectedXDim = 1 + (N - 1) * incX; in validateSPMV()
689 static void validateGER(RS* mRS, const sp<const Element>& e, const sp<Allocation>& X, int incX, in validateGER() argument
707 if (incX <= 0 || incY <= 0) { in validateGER()
710 int expectedXDim = 1 + (M - 1) * incX; in validateGER()
722 const sp<Allocation>& X, int incX, const sp<Allocation>& A) { in validateSYR() argument
736 if (incX <= 0) { in validateSYR()
739 int expectedXDim = 1 + (N - 1) * incX; in validateSYR()
746 const sp<Allocation>& X, int incX, const sp<Allocation>& Ap) { in validateSPR() argument
763 if (incX <= 0) { in validateSPR()
766 int expectedXDim = 1 + (N - 1) * incX; in validateSPR()
775 int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& A) { in validateSYR2() argument
791 if (incX <= 0 || incY <= 0) { in validateSYR2()
794 int expectedXDim = 1 + (N - 1) * incX; in validateSYR2()
803 int incX, const sp<Allocation>& Y, int incY, const sp<Allocation>& Ap) { in validateSPR2() argument
821 if (incX <= 0 || incY <= 0) { in validateSPR2()
824 int expectedXDim = 1 + (N - 1) * incX; in validateSPR2()
834 int incX, float beta, const sp<Allocation>& Y, int incY) { in SSYMV() argument
835 int N = validateSYMV(mRS, Element::F32(mRS), Uplo, A, X, Y, incX, incY); in SSYMV()
838 A->getID(), X->getID(), beta, Y->getID(), incX, incY, 0, 0); in SSYMV()
842 int incX, float beta, const sp<Allocation>& Y, int incY) { in SSBMV() argument
847 int N = validateSYMV(mRS, Element::F32(mRS), Uplo, A, X, Y, incX, incY); in SSBMV()
850 A->getID(), X->getID(), beta, Y->getID(), incX, incY, 0, 0); in SSBMV()
854 int incX, float beta, const sp<Allocation>& Y, int incY) { in SSPMV() argument
855 int N = validateSPMV(mRS, Element::F32(mRS), Uplo, Ap, X, incX, Y, incY); in SSPMV()
858 Ap->getID(), X->getID(), beta, Y->getID(), incX, incY, 0, 0); in SSPMV()
861 void ScriptIntrinsicBLAS::SGER(float alpha, const sp<Allocation>& X, int incX, in SGER() argument
865 validateGER(mRS, Element::F32(mRS), X, incX, Y, incY, A); in SGER()
868 X->getID(), Y->getID(), 0.f, A->getID(), incX, incY, 0, 0); in SGER()
872 int incX, const sp<Allocation>& A) { in SSYR() argument
873 int N = validateSYR(mRS, Element::F32(mRS), Uplo, X, incX, A); in SSYR()
876 X->getID(), A->getID(), 0.f, 0, incX, 0, 0, 0); in SSYR()
880 int incX, const sp<Allocation>& Ap) { in SSPR() argument
881 int N = validateSPR(mRS, Element::F32(mRS), Uplo, X, incX, Ap); in SSPR()
884 alpha, X->getID(), Ap->getID(), 0.f, 0, incX, 0, 0, 0); in SSPR()
887 void ScriptIntrinsicBLAS::SSYR2(RsBlasUplo Uplo, float alpha, const sp<Allocation>& X, int incX, in SSYR2() argument
889 int N = validateSYR2(mRS, Element::F32(mRS), Uplo, X, incX, Y, incY, A); in SSYR2()
892 X->getID(), Y->getID(), 0, A->getID(), incX, incY, 0, 0); in SSYR2()
895 void ScriptIntrinsicBLAS::SSPR2(RsBlasUplo Uplo, float alpha, const sp<Allocation>& X, int incX, in SSPR2() argument
897 int N = validateSPR2(mRS, Element::F32(mRS), Uplo, X, incX, Y, incY, Ap); in SSPR2()
900 X->getID(), Y->getID(), 0, Ap->getID(), incX, incY, 0, 0); in SSPR2()
904 int incX, double beta, const sp<Allocation>& Y, int incY) { in DSYMV() argument
905 int N = validateSYMV(mRS, Element::F64(mRS), Uplo, A, X, Y, incX, incY); in DSYMV()
908 A->getID(), X->getID(), beta, Y->getID(), incX, incY, 0, 0); in DSYMV()
912 int incX, double beta, const sp<Allocation>& Y, int incY) { in DSBMV() argument
917 int N = validateSYMV(mRS, Element::F64(mRS), Uplo, A, X, Y, incX, incY); in DSBMV()
920 A->getID(), X->getID(), beta, Y->getID(), incX, incY, 0, 0); in DSBMV()
924 int incX, double beta, const sp<Allocation>& Y, int incY) { in DSPMV() argument
925 int N = validateSPMV(mRS, Element::F64(mRS), Uplo, Ap, X, incX, Y, incY); in DSPMV()
928 Ap->getID(), X->getID(), beta, Y->getID(), incX, incY, 0, 0); in DSPMV()
931 void ScriptIntrinsicBLAS::DGER(double alpha, const sp<Allocation>& X, int incX, const sp<Allocation… in DGER() argument
935 validateGER(mRS, Element::F64(mRS), X, incX, Y, incY, A); in DGER()
938 X->getID(), Y->getID(), 0.f, A->getID(), incX, incY, 0, 0); in DGER()
942 int incX, const sp<Allocation>& A) { in DSYR() argument
943 int N = validateSYR(mRS, Element::F64(mRS), Uplo, X, incX, A); in DSYR()
946 X->getID(), A->getID(), 0.f, 0, incX, 0, 0, 0); in DSYR()
950 int incX, const sp<Allocation>& Ap) { in DSPR() argument
951 int N = validateSPR(mRS, Element::F64(mRS), Uplo, X, incX, Ap); in DSPR()
954 X->getID(), Ap->getID(), 0.f, 0, incX, 0, 0, 0); in DSPR()
957 void ScriptIntrinsicBLAS::DSYR2(RsBlasUplo Uplo, double alpha, const sp<Allocation>& X, int incX, in DSYR2() argument
959 int N = validateSYR2(mRS, Element::F64(mRS), Uplo, X, incX, Y, incY, A); in DSYR2()
962 X->getID(), Y->getID(), 0, A->getID(), incX, incY, 0, 0); in DSYR2()
965 void ScriptIntrinsicBLAS::DSPR2(RsBlasUplo Uplo, double alpha, const sp<Allocation>& X, int incX, in DSPR2() argument
967 int N = validateSPR2(mRS, Element::F64(mRS), Uplo, X, incX, Y, incY, Ap); in DSPR2()
970 X->getID(), Y->getID(), 0, Ap->getID(), incX, incY, 0, 0); in DSPR2()
978 static void validateGERU(RS* mRS, const sp<const Element>& e, const sp<Allocation>& X, int incX, in validateGERU() argument
991 if (incX <= 0 || incY <= 0) { in validateGERU()
994 int expectedXDim = 1 + (M - 1) * incX; in validateGERU()
1006 … const sp<Allocation>& X, int incX, Float2 beta, const sp<Allocation>& Y, int incY) { in CHEMV() argument
1008 int N = validateSYR2(mRS, Element::F32_2(mRS), Uplo, X, incX, Y, incY, A); in CHEMV()
1012 beta.x, beta.y, Y->getID(), incX, incY, 0, 0); in CHEMV()
1016 … const sp<Allocation>& X, int incX, Float2 beta, const sp<Allocation>& Y, int incY) { in CHBMV() argument
1018 int N = validateSYR2(mRS, Element::F32_2(mRS), Uplo, X, incX, Y, incY, A); in CHBMV()
1025 beta.x, beta.y, Y->getID(), incX, incY, 0, 0); in CHBMV()
1029 … const sp<Allocation>& X, int incX, Float2 beta, const sp<Allocation>& Y, int incY) { in CHPMV() argument
1031 int N = validateSPR2(mRS, Element::F32_2(mRS), Uplo, X, incX, Y, incY, Ap); in CHPMV()
1035 beta.x, beta.y, Y->getID(), incX, incY, 0, 0); in CHPMV()
1038 void ScriptIntrinsicBLAS::CGERU(Float2 alpha, const sp<Allocation>& X, int incX, in CGERU() argument
1040 validateGERU(mRS, Element::F32_2(mRS), X, incX, Y, incY, A); in CGERU()
1046 0, 0, A->getID(), incX, incY, 0, 0); in CGERU()
1049 void ScriptIntrinsicBLAS::CGERC(Float2 alpha, const sp<Allocation>& X, int incX, in CGERC() argument
1052 validateGERU(mRS, Element::F32_2(mRS), X, incX, Y, incY, A); in CGERC()
1058 0, 0, A->getID(), incX, incY, 0, 0); in CGERC()
1062 int incX, const sp<Allocation>& A) { in CHER() argument
1064 int N = validateSYR(mRS, Element::F32_2(mRS), Uplo, X, incX, A); in CHER()
1068 0, 0, A->getID(), incX, 0, 0, 0); in CHER()
1072 int incX, const sp<Allocation>& Ap) { in CHPR() argument
1074 int N = validateSPR(mRS, Element::F32_2(mRS), Uplo, X, incX, Ap); in CHPR()
1078 0, 0, Ap->getID(), incX, 0, 0, 0); in CHPR()
1081 void ScriptIntrinsicBLAS::CHER2(RsBlasUplo Uplo, Float2 alpha, const sp<Allocation>& X, int incX, in CHER2() argument
1084 int N = validateSYR2(mRS, Element::F32_2(mRS), Uplo, X, incX, Y, incY, A); in CHER2()
1088 0, 0, A->getID(), incX, incY, 0, 0); in CHER2()
1091 void ScriptIntrinsicBLAS::CHPR2(RsBlasUplo Uplo, Float2 alpha, const sp<Allocation>& X, int incX, in CHPR2() argument
1094 int N = validateSPR2(mRS, Element::F32_2(mRS), Uplo, X, incX, Y, incY, Ap); in CHPR2()
1098 0, 0, Ap->getID(), incX, incY, 0, 0); in CHPR2()
1102 … const sp<Allocation>& X, int incX, Double2 beta, const sp<Allocation>& Y, int incY) { in ZHEMV() argument
1104 int N = validateSYR2(mRS, Element::F64_2(mRS), Uplo, X, incX, Y, incY, A); in ZHEMV()
1108 beta.x, beta.y, Y->getID(), incX, incY, 0, 0); in ZHEMV()
1112 int incX, Double2 beta, const sp<Allocation>& Y, int incY) { in ZHBMV() argument
1114 int N = validateSYR2(mRS, Element::F64_2(mRS), Uplo, X, incX, Y, incY, A); in ZHBMV()
1121 beta.x, beta.y, Y->getID(), incX, incY, 0, 0); in ZHBMV()
1125 int incX, Double2 beta, const sp<Allocation>& Y, int incY) { in ZHPMV() argument
1127 int N = validateSPR2(mRS, Element::F64_2(mRS), Uplo, X, incX, Y, incY, Ap); in ZHPMV()
1131 beta.x, beta.y, Y->getID(), incX, incY, 0, 0); in ZHPMV()
1134 void ScriptIntrinsicBLAS::ZGERU(Double2 alpha, const sp<Allocation>& X, int incX, in ZGERU() argument
1136 validateGERU(mRS, Element::F64_2(mRS), X, incX, Y, incY, A); in ZGERU()
1142 0, 0, A->getID(), incX, incY, 0, 0); in ZGERU()
1145 void ScriptIntrinsicBLAS::ZGERC(Double2 alpha, const sp<Allocation>& X, int incX, in ZGERC() argument
1148 validateGERU(mRS, Element::F64_2(mRS), X, incX, Y, incY, A); in ZGERC()
1154 0, 0, A->getID(), incX, incY, 0, 0); in ZGERC()
1158 int incX, const sp<Allocation>& A) { in ZHER() argument
1160 int N = validateSYR(mRS, Element::F64_2(mRS), Uplo, X, incX, A); in ZHER()
1164 0, 0, A->getID(), incX, 0, 0, 0); in ZHER()
1168 int incX, const sp<Allocation>& Ap) { in ZHPR() argument
1170 int N = validateSPR(mRS, Element::F64_2(mRS), Uplo, X, incX, Ap); in ZHPR()
1174 0, 0, Ap->getID(), incX, 0, 0, 0); in ZHPR()
1177 void ScriptIntrinsicBLAS::ZHER2(RsBlasUplo Uplo, Double2 alpha, const sp<Allocation>& X, int incX, in ZHER2() argument
1180 int N = validateSYR2(mRS, Element::F64_2(mRS), Uplo, X, incX, Y, incY, A); in ZHER2()
1184 0, 0, A->getID(), incX, incY, 0, 0); in ZHER2()
1187 void ScriptIntrinsicBLAS::ZHPR2(RsBlasUplo Uplo, Double2 alpha, const sp<Allocation>& X, int incX, in ZHPR2() argument
1190 int N = validateSPR2(mRS, Element::F64_2(mRS), Uplo, X, incX, Y, incY, Ap); in ZHPR2()
1194 0, 0, Ap->getID(), incX, incY, 0, 0); in ZHPR2()