/frameworks/rs/cpp/ |
D | ScriptIntrinsicBLAS.cpp | 44 int M, int N, int K, int incX, int incY, int KL, int KU, in setUpBLASCall() 102 float beta, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Single() 116 double beta, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Double() 129 … float betaX, float betaY, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Complex() 142 … double betaX, double betaY, RsAllocation C, int incX, int incY, int KL, int KU) { in nScriptIntrinsicBLAS_Z() 249 void ScriptIntrinsicBLAS::SGBMV(RsBlasTranspose TransA, int KL, int KU, float alpha, sp<Allocation>… in SGBMV() 265 void ScriptIntrinsicBLAS::DGBMV(RsBlasTranspose TransA, int KL, int KU, double alpha, sp<Allocation… in DGBMV() 281 void ScriptIntrinsicBLAS::CGBMV(RsBlasTranspose TransA, int KL, int KU, Float2 alpha, sp<Allocation… in CGBMV() 297 void ScriptIntrinsicBLAS::ZGBMV(RsBlasTranspose TransA, int KL, int KU, Double2 alpha, sp<Allocatio… in ZGBMV()
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
D | RenderScript.java | 919 int KL, int KU, boolean mUseInc); in rsnScriptIntrinsicBLAS_Single() 923 int KL, int KU, boolean mUseInc) { in nScriptIntrinsicBLAS_Single() 931 int KL, int KU, boolean mUseInc); in rsnScriptIntrinsicBLAS_Double() 935 int KL, int KU, boolean mUseInc) { in nScriptIntrinsicBLAS_Double() 943 int KL, int KU, boolean mUseInc); in rsnScriptIntrinsicBLAS_Complex() 947 int KL, int KU, boolean mUseInc) { in nScriptIntrinsicBLAS_Complex() 955 int KL, int KU, boolean mUseInc); in rsnScriptIntrinsicBLAS_Z() 959 int KL, int KU, boolean mUseInc) { in nScriptIntrinsicBLAS_Z()
|
D | ScriptIntrinsicBLAS.java | 464 …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/ |
D | RenderScript.java | 969 int KL, int KU); in rsnScriptIntrinsicBLAS_Single() 973 int KL, int KU) { in nScriptIntrinsicBLAS_Single() 981 int KL, int KU); in rsnScriptIntrinsicBLAS_Double() 985 int KL, int KU) { in nScriptIntrinsicBLAS_Double() 993 int KL, int KU); in rsnScriptIntrinsicBLAS_Complex() 997 int KL, int KU) { in nScriptIntrinsicBLAS_Complex() 1005 int KL, int KU); in rsnScriptIntrinsicBLAS_Z() 1009 int KL, int KU) { in nScriptIntrinsicBLAS_Z()
|
D | ScriptIntrinsicBLAS.java | 417 …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/support/v8/renderscript/jni/ |
D | android_renderscript_RenderScript.cpp | 586 jint KL, jint KU, jboolean mUseInc) { in nScriptIntrinsicBLAS_Single() 626 jint KL, jint KU, jboolean mUseInc) { in nScriptIntrinsicBLAS_Double() 666 … jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) { in nScriptIntrinsicBLAS_Complex() 709 … jdouble betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) { in nScriptIntrinsicBLAS_Z()
|
/frameworks/base/rs/jni/ |
D | android_renderscript_RenderScript.cpp | 610 jint KL, jint KU) { in nScriptIntrinsicBLAS_Single() 643 jint KL, jint KU) { in nScriptIntrinsicBLAS_Double() 676 jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU) { in nScriptIntrinsicBLAS_Complex() 711 jdouble betaY, jlong C, jint incX, jint incY, jint KL, jint KU) { in nScriptIntrinsicBLAS_Z()
|
/frameworks/rs/ |
D | rsDefines.h | 468 int KU; member
|