• Home
  • Raw
  • Download

Lines Matching refs:incY

275 …validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) {  in validateGEMV()  argument
288 if (incX <= 0 || incY <= 0) { in validateGEMV()
294 expectedYDim = 1 + (M - 1) * incY; in validateGEMV()
297 expectedYDim = 1 + (N - 1) * incY; in validateGEMV()
320 …nt TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGEMV() argument
321 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local
324 …nsA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, 0, 0); in SGEMV() local
342 … TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGEMV() argument
343 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local
346 …nsA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, 0, 0); in DGEMV() local
364 … TransA, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CGEMV() argument
365 validateGEMV(Element.F32_2(mRS), TransA, A, X, incX, Y, incY); in CGEMV() local
368 …, 0, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, incY, 0, 0); in CGEMV() local
386 …ransA, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZGEMV() argument
387 validateGEMV(Element.F64_2(mRS), TransA, A, X, incX, Y, incY); in ZGEMV() local
390 …, 0, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, incY, 0, 0); in ZGEMV() local
417 …L, int KU, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGBMV() argument
419 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGBMV() local
425 …A, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, KL, KU); in SGBMV() local
452 … int KU, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGBMV() argument
454 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGBMV() local
460 …A, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, KL, KU); in DGBMV() local
487 … int KU, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CGBMV() argument
489 validateGEMV(Element.F32_2(mRS), TransA, A, X, incX, Y, incY); in CGBMV() local
495 …0, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, incY, KL, KU); in CGBMV() local
522 …nt KU, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZGBMV() argument
524 validateGEMV(Element.F64_2(mRS), TransA, A, X, incX, Y, incY); in ZGBMV() local
530 …0, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, incY, KL, KU); in ZGBMV() local
1213 …dateSYMV(Element e, @Uplo int Uplo, Allocation A, Allocation X, Allocation Y, int incX, int incY) { in validateSYMV() argument
1228 if (incX <= 0 || incY <= 0) { in validateSYMV()
1235 int expectedYDim = 1 + (N - 1) * incY; in validateSYMV()
1241 …ateSPMV(Element e, @Uplo int Uplo, Allocation Ap, Allocation X, int incX, Allocation Y, int incY) { in validateSPMV() argument
1260 if (incX <= 0 || incY <= 0) { in validateSPMV()
1267 int expectedYDim = 1 + (N - 1) * incY; in validateSPMV()
1274 … static void validateGER(Element e, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in validateGER() argument
1291 if (incX <= 0 || incY <= 0) { in validateGER()
1298 int expectedYDim = 1 + (N - 1) * incY; in validateGER()
1358 …dateSYR2(Element e, @Uplo int Uplo, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in validateSYR2() argument
1375 if (incX <= 0 || incY <= 0) { in validateSYR2()
1379 int expectedYDim = 1 + (N - 1) * incY; in validateSYR2()
1386 …ateSPR2(Element e, @Uplo int Uplo, Allocation X, int incX, Allocation Y, int incY, Allocation Ap) { in validateSPR2() argument
1405 if (incX <= 0 || incY <= 0) { in validateSPR2()
1409 int expectedYDim = 1 + (N - 1) * incY; in validateSPR2()
1432 … int Uplo, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SSYMV() argument
1433 int N = validateSYMV(Element.F32(mRS), Uplo, A, X, Y, incX, incY); in SSYMV()
1434 …, 0, 0, Uplo, 0, 0, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, 0, 0); in SSYMV() local
1460 …lo, int K, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SSBMV() argument
1465 int N = validateSYMV(Element.F32(mRS), Uplo, A, X, Y, incX, incY); in SSBMV()
1466 …, 0, 0, Uplo, 0, 0, N, K, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, 0, 0); in SSBMV() local
1492 …int Uplo, float alpha, Allocation Ap, Allocation X, int incX, float beta, Allocation Y, int incY) { in SSPMV() argument
1493 int N = validateSPMV(Element.F32(mRS), Uplo, Ap, X, incX, Y, incY); in SSPMV()
1494 … 0, 0, Uplo, 0, 0, N, 0, alpha, Ap.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, 0, 0); in SSPMV() local
1510 public void SGER(float alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in SGER() argument
1513 validateGER(Element.F32(mRS), X, incX, Y, incY, A); in SGER() local
1514 …r, 0, 0, 0, 0, 0, M, N, 0, alpha, X.getID(mRS), Y.getID(mRS), 0.f, A.getID(mRS), incX, incY, 0, 0); in SGER() local
1573 …public void SSYR2(@Uplo int Uplo, float alpha, Allocation X, int incX, Allocation Y, int incY, All… in SSYR2() argument
1574 int N = validateSYR2(Element.F32(mRS), Uplo, X, incX, Y, incY, A); in SSYR2()
1575 …, 0, 0, 0, Uplo, 0, 0, N, 0, alpha, X.getID(mRS), Y.getID(mRS), 0, A.getID(mRS), incX, incY, 0, 0); in SSYR2() local
1600 …public void SSPR2(@Uplo int Uplo, float alpha, Allocation X, int incX, Allocation Y, int incY, All… in SSPR2() argument
1601 int N = validateSPR2(Element.F32(mRS), Uplo, X, incX, Y, incY, Ap); in SSPR2()
1602 … 0, 0, 0, Uplo, 0, 0, N, 0, alpha, X.getID(mRS), Y.getID(mRS), 0, Ap.getID(mRS), incX, incY, 0, 0); in SSPR2() local
1620 …nt Uplo, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DSYMV() argument
1621 int N = validateSYMV(Element.F64(mRS), Uplo, A, X, Y, incX, incY); in DSYMV()
1622 …, 0, 0, Uplo, 0, 0, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, 0, 0); in DSYMV() local
1648 …, int K, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DSBMV() argument
1653 int N = validateSYMV(Element.F64(mRS), Uplo, A, X, Y, incX, incY); in DSBMV()
1654 …, 0, 0, Uplo, 0, 0, N, K, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, 0, 0); in DSBMV() local
1680 …t Uplo, double alpha, Allocation Ap, Allocation X, int incX, double beta, Allocation Y, int incY) { in DSPMV() argument
1681 int N = validateSPMV(Element.F64(mRS), Uplo, Ap, X, incX, Y, incY); in DSPMV()
1682 … 0, 0, Uplo, 0, 0, N, 0, alpha, Ap.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, 0, 0); in DSPMV() local
1698 public void DGER(double alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in DGER() argument
1701 validateGER(Element.F64(mRS), X, incX, Y, incY, A); in DGER() local
1702 …r, 0, 0, 0, 0, 0, M, N, 0, alpha, X.getID(mRS), Y.getID(mRS), 0.f, A.getID(mRS), incX, incY, 0, 0); in DGER() local
1761 …public void DSYR2(@Uplo int Uplo, double alpha, Allocation X, int incX, Allocation Y, int incY, Al… in DSYR2() argument
1762 int N = validateSYR2(Element.F64(mRS), Uplo, X, incX, Y, incY, A); in DSYR2()
1763 …, 0, 0, 0, Uplo, 0, 0, N, 0, alpha, X.getID(mRS), Y.getID(mRS), 0, A.getID(mRS), incX, incY, 0, 0); in DSYR2() local
1788 …public void DSPR2(@Uplo int Uplo, double alpha, Allocation X, int incX, Allocation Y, int incY, Al… in DSPR2() argument
1789 int N = validateSPR2(Element.F64(mRS), Uplo, X, incX, Y, incY, Ap); in DSPR2()
1790 … 0, 0, 0, Uplo, 0, 0, N, 0, alpha, X.getID(mRS), Y.getID(mRS), 0, Ap.getID(mRS), incX, incY, 0, 0); in DSPR2() local
1798 …static void validateGERU(Element e, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in validateGERU() argument
1810 if (incX <= 0 || incY <= 0) { in validateGERU()
1817 int expectedYDim = 1 + (N - 1) * incY; in validateGERU()
1839 …nt Uplo, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CHEMV() argument
1841 int N = validateSYR2(Element.F32_2(mRS), Uplo, X, incX, Y, incY, A); in CHEMV()
1842 …, 0, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, incY, 0, 0); in CHEMV() local
1868 …, int K, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CHBMV() argument
1870 int N = validateSYR2(Element.F32_2(mRS), Uplo, X, incX, Y, incY, A); in CHBMV()
1874 …, K, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, incY, 0, 0); in CHBMV() local
1900 …t Uplo, Float2 alpha, Allocation Ap, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CHPMV() argument
1902 int N = validateSPR2(Element.F32_2(mRS), Uplo, X, incX, Y, incY, Ap); in CHPMV()
1903 … 0, alpha.x, alpha.y, Ap.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, incY, 0, 0); in CHPMV() local
1919 public void CGERU(Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in CGERU() argument
1920 validateGERU(Element.F32_2(mRS), X, incX, Y, incY, A); in CGERU() local
1923 …0, 0, M, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, A.getID(mRS), incX, incY, 0, 0); in CGERU() local
1939 public void CGERC(Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in CGERC() argument
1941 validateGERU(Element.F32_2(mRS), X, incX, Y, incY, A); in CGERC() local
1944 …0, 0, M, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, A.getID(mRS), incX, incY, 0, 0); in CGERC() local
2005 …public void CHER2(@Uplo int Uplo, Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Al… in CHER2() argument
2007 int N = validateSYR2(Element.F32_2(mRS), Uplo, X, incX, Y, incY, A); in CHER2()
2008 …o, 0, 0, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, A.getID(mRS), incX, incY, 0, 0); in CHER2() local
2033 …public void CHPR2(@Uplo int Uplo, Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Al… in CHPR2() argument
2035 int N = validateSPR2(Element.F32_2(mRS), Uplo, X, incX, Y, incY, Ap); in CHPR2()
2036 …, 0, 0, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, Ap.getID(mRS), incX, incY, 0, 0); in CHPR2() local
2054 … Uplo, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZHEMV() argument
2056 int N = validateSYR2(Element.F64_2(mRS), Uplo, X, incX, Y, incY, A); in ZHEMV()
2057 …, 0, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, incY, 0, 0); in ZHEMV() local
2083 …int K, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZHBMV() argument
2085 int N = validateSYR2(Element.F64_2(mRS), Uplo, X, incX, Y, incY, A); in ZHBMV()
2089 …, K, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, incY, 0, 0); in ZHBMV() local
2115 …Uplo, Double2 alpha, Allocation Ap, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZHPMV() argument
2117 int N = validateSPR2(Element.F64_2(mRS), Uplo, X, incX, Y, incY, Ap); in ZHPMV()
2118 … 0, alpha.x, alpha.y, Ap.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, incY, 0, 0); in ZHPMV() local
2134 public void ZGERU(Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in ZGERU() argument
2135 validateGERU(Element.F64_2(mRS), X, incX, Y, incY, A); in ZGERU() local
2138 …0, 0, M, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, A.getID(mRS), incX, incY, 0, 0); in ZGERU() local
2154 public void ZGERC(Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in ZGERC() argument
2156 validateGERU(Element.F64_2(mRS), X, incX, Y, incY, A); in ZGERC() local
2159 …0, 0, M, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, A.getID(mRS), incX, incY, 0, 0); in ZGERC() local
2220 …public void ZHER2(@Uplo int Uplo, Double2 alpha, Allocation X, int incX, Allocation Y, int incY, A… in ZHER2() argument
2222 int N = validateSYR2(Element.F64_2(mRS), Uplo, X, incX, Y, incY, A); in ZHER2()
2223 …o, 0, 0, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, A.getID(mRS), incX, incY, 0, 0); in ZHER2() local
2248 …public void ZHPR2(@Uplo int Uplo, Double2 alpha, Allocation X, int incX, Allocation Y, int incY, A… in ZHPR2() argument
2250 int N = validateSPR2(Element.F64_2(mRS), Uplo, X, incX, Y, incY, Ap); in ZHPR2()
2251 …, 0, 0, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, Ap.getID(mRS), incX, incY, 0, 0); in ZHPR2() local