Home
last modified time | relevance | path

Searched defs:KL (Results 1 – 8 of 8) sorted by relevance

/frameworks/rs/cpp/
DScriptIntrinsicBLAS.cpp52 int M, int N, int K, int incX, int incY, int KL, int KU, in setUpBLASCall()
110 float beta, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Single()
124 double beta, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Double()
137 … float betaX, float betaY, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Complex()
150 … double betaX, double betaY, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Z()
257 void ScriptIntrinsicBLAS::SGBMV(RsBlasTranspose TransA, int KL, int KU, float alpha, const sp<Alloc… in SGBMV()
273 void ScriptIntrinsicBLAS::DGBMV(RsBlasTranspose TransA, int KL, int KU, double alpha, const sp<Allo… in DGBMV()
289 void ScriptIntrinsicBLAS::CGBMV(RsBlasTranspose TransA, int KL, int KU, Float2 alpha, const sp<Allo… in CGBMV()
305 void ScriptIntrinsicBLAS::ZGBMV(RsBlasTranspose TransA, int KL, int KU, Double2 alpha, const sp<All… in ZGBMV()
/frameworks/rs/support/java/src/androidx/renderscript/
DRenderScript.java931 int KL, int KU, boolean mUseInc); in rsnScriptIntrinsicBLAS_Single()
935 int KL, int KU, boolean mUseInc) { in nScriptIntrinsicBLAS_Single()
943 int KL, int KU, boolean mUseInc); in rsnScriptIntrinsicBLAS_Double()
947 int KL, int KU, boolean mUseInc) { in nScriptIntrinsicBLAS_Double()
955 int KL, int KU, boolean mUseInc); in rsnScriptIntrinsicBLAS_Complex()
959 int KL, int KU, boolean mUseInc) { in nScriptIntrinsicBLAS_Complex()
967 int KL, int KU, boolean mUseInc); in rsnScriptIntrinsicBLAS_Z()
971 int KL, int KU, boolean mUseInc) { in nScriptIntrinsicBLAS_Z()
DScriptIntrinsicBLAS.java464 …public void SGBMV(@Transpose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, … in SGBMV()
482 …s_sgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, aID, xID, beta, yID, incX, incY, KL, KU, mUseIncSupp); in SGBMV() local
509 …public void DGBMV(@Transpose int TransA, int KL, int KU, double alpha, Allocation A, Allocation X,… in DGBMV()
527 …s_dgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, aID, xID, beta, yID, incX, incY, KL, KU, mUseIncSupp); in DGBMV() local
554 …public void CGBMV(@Transpose int TransA, int KL, int KU, Float2 alpha, Allocation A, Allocation X,… in CGBMV()
572 …, 0, 0, M, N, 0, alpha.x, alpha.y, aID, xID, beta.x, beta.y, yID, incX, incY, KL, KU, mUseIncSupp); in CGBMV() local
599 …public void ZGBMV(@Transpose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X… in ZGBMV()
617 …, 0, 0, M, N, 0, alpha.x, alpha.y, aID, xID, beta.x, beta.y, yID, incX, incY, KL, KU, mUseIncSupp); in ZGBMV() local
/frameworks/base/rs/java/android/renderscript/
DRenderScript.java982 int KL, int KU); in rsnScriptIntrinsicBLAS_Single()
986 int KL, int KU) { in nScriptIntrinsicBLAS_Single()
994 int KL, int KU); in rsnScriptIntrinsicBLAS_Double()
998 int KL, int KU) { in nScriptIntrinsicBLAS_Double()
1006 int KL, int KU); in rsnScriptIntrinsicBLAS_Complex()
1010 int KL, int KU) { in nScriptIntrinsicBLAS_Complex()
1018 int KL, int KU); in rsnScriptIntrinsicBLAS_Z()
1022 int KL, int KU) { in nScriptIntrinsicBLAS_Z()
DScriptIntrinsicBLAS.java417 …public void SGBMV(@Transpose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, … in SGBMV()
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 …public void DGBMV(@Transpose int TransA, int KL, int KU, double alpha, Allocation A, Allocation X,… in DGBMV()
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 …public void CGBMV(@Transpose int TransA, int KL, int KU, Float2 alpha, Allocation A, Allocation X,… in CGBMV()
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 …public void ZGBMV(@Transpose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X… in ZGBMV()
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
/frameworks/rs/support/jni/
Dandroid_renderscript_RenderScript.cpp588 jint KL, jint KU, jboolean mUseInc) { in nScriptIntrinsicBLAS_Single()
628 jint KL, jint KU, jboolean mUseInc) { in nScriptIntrinsicBLAS_Double()
668 … jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) { in nScriptIntrinsicBLAS_Complex()
711 … jdouble betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) { in nScriptIntrinsicBLAS_Z()
/frameworks/base/rs/jni/
Dandroid_renderscript_RenderScript.cpp623 jint KL, jint KU) { in nScriptIntrinsicBLAS_Single()
656 jint KL, jint KU) { in nScriptIntrinsicBLAS_Double()
689 jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU) { in nScriptIntrinsicBLAS_Complex()
724 jdouble betaY, jlong C, jint incX, jint incY, jint KL, jint KU) { in nScriptIntrinsicBLAS_Z()
/frameworks/rs/
DrsDefines.h467 int KL; member