Home
last modified time | relevance | path

Searched refs:KL (Results 1 – 14 of 14) sorted by relevance

/frameworks/base/cmds/incident_helper/testdata/
Dsystem_properties.txt9 [ro.boot.boottime]: [1BLL:85,1BLE:898,2BLL:0,2BLE:862,SW:6739,KL:340]
/frameworks/rs/support/java/src/androidx/renderscript/
DRenderScript.java936 int KL, int KU, boolean mUseInc); in rsnScriptIntrinsicBLAS_Single() argument
940 int KL, int KU, boolean mUseInc) { in nScriptIntrinsicBLAS_Single() argument
942 …unc, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU, mUseInc); in nScriptIntrinsicBLAS_Single()
948 int KL, int KU, boolean mUseInc); in rsnScriptIntrinsicBLAS_Double() argument
952 int KL, int KU, boolean mUseInc) { in nScriptIntrinsicBLAS_Double() argument
954 …unc, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU, mUseInc); in nScriptIntrinsicBLAS_Double()
960 int KL, int KU, boolean mUseInc); in rsnScriptIntrinsicBLAS_Complex() argument
964 int KL, int KU, boolean mUseInc) { in nScriptIntrinsicBLAS_Complex() argument
966 …sB, Side, Uplo, Diag, M, N, K, alphaX, alphaY, A, B, betaX, betaY, C, incX, incY, KL, KU, mUseInc); in nScriptIntrinsicBLAS_Complex()
972 int KL, int KU, boolean mUseInc); in rsnScriptIntrinsicBLAS_Z() argument
[all …]
DScriptIntrinsicBLAS.java468 …public void SGBMV(@Transpose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, … in SGBMV() argument
471 if (KL < 0 || KU < 0) { in SGBMV()
486 …s_sgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, aID, xID, beta, yID, incX, incY, KL, KU, mUseIncSupp); in SGBMV() local
513 …public void DGBMV(@Transpose int TransA, int KL, int KU, double alpha, Allocation A, Allocation X,… in DGBMV() argument
516 if (KL < 0 || KU < 0) { in DGBMV()
531 …s_dgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, aID, xID, beta, yID, incX, incY, KL, KU, mUseIncSupp); in DGBMV() local
558 …public void CGBMV(@Transpose int TransA, int KL, int KU, Float2 alpha, Allocation A, Allocation X,… in CGBMV() argument
561 if (KL < 0 || KU < 0) { in CGBMV()
576 …, 0, 0, M, N, 0, alpha.x, alpha.y, aID, xID, beta.x, beta.y, yID, incX, incY, KL, KU, mUseIncSupp); in CGBMV() local
603 …public void ZGBMV(@Transpose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X… in ZGBMV() argument
[all …]
/frameworks/base/rs/java/android/renderscript/
DRenderScript.java976 int KL, int KU); in rsnScriptIntrinsicBLAS_Single() argument
980 int KL, int KU) { in nScriptIntrinsicBLAS_Single() argument
982 …xt, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU); in nScriptIntrinsicBLAS_Single()
988 int KL, int KU); in rsnScriptIntrinsicBLAS_Double() argument
992 int KL, int KU) { in nScriptIntrinsicBLAS_Double() argument
994 …xt, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU); in nScriptIntrinsicBLAS_Double()
1000 int KL, int KU); in rsnScriptIntrinsicBLAS_Complex() argument
1004 int KL, int KU) { in nScriptIntrinsicBLAS_Complex() argument
1006 …nsA, TransB, Side, Uplo, Diag, M, N, K, alphaX, alphaY, A, B, betaX, betaY, C, incX, incY, KL, KU); in nScriptIntrinsicBLAS_Complex()
1012 int KL, int KU); in rsnScriptIntrinsicBLAS_Z() argument
[all …]
DScriptIntrinsicBLAS.java421 …public void SGBMV(@Transpose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, … in SGBMV() argument
424 if (KL < 0 || KU < 0) { in SGBMV()
429 …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
456 …public void DGBMV(@Transpose int TransA, int KL, int KU, double alpha, Allocation A, Allocation X,… in DGBMV() argument
459 if (KL < 0 || KU < 0) { in DGBMV()
464 …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
491 …public void CGBMV(@Transpose int TransA, int KL, int KU, Float2 alpha, Allocation A, Allocation X,… in CGBMV() argument
494 if (KL < 0 || KU < 0) { in CGBMV()
499 …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
526 …public void ZGBMV(@Transpose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X… in ZGBMV() argument
[all …]
/frameworks/rs/cpp/
DScriptIntrinsicBLAS.cpp52 int M, int N, int K, int incX, int incY, int KL, int KU, in setUpBLASCall() argument
100 call.KL = KL; 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()
[all …]
DrsCppStructs.h1935 … int KL, int KU, float alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX,
1963 int KL, int KU, double alpha, const sp<Allocation>& A, const sp<Allocation>& X,
1991 int KL, int KU, Float2 alpha, const sp<Allocation>& A, const sp<Allocation>& X,
2019 … int KL, int KU, Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX,
/frameworks/rs/cpu_ref/
DrsCpuBLASDispatch.h31 const int KL, const int KU, const float alpha,
64 const int KL, const int KU, const double alpha,
97 const int KL, const int KU, const void *alpha,
130 const int KL, const int KU, const void *alpha,
DrsCpuIntrinsicBLAS.cpp285 cblas_sgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU, in invokeForEach()
327 cblas_dgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU, in invokeForEach()
369 cblas_cgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU, in invokeForEach()
411 cblas_zgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU, in invokeForEach()
/frameworks/base/tests/LegacyRestoreTest/
Djbmr2-encrypted-settings-abcd.ab17 n��ɭ=��aA�|ݽ��8E.�h�xi�Δ��e������/��óQu|A%Y�Mp�5���Y1O���C�;X!Oq1H����}���z��~TA<2xI|KL�г�…
/frameworks/rs/support/jni/
Dandroid_renderscript_RenderScript.cpp588 jint KL, jint KU, jboolean mUseInc) { in nScriptIntrinsicBLAS_Single() argument
604 call.KL = KL; in nScriptIntrinsicBLAS_Single()
628 jint KL, jint KU, jboolean mUseInc) { in nScriptIntrinsicBLAS_Double() argument
644 call.KL = KL; in nScriptIntrinsicBLAS_Double()
668 … jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) { in nScriptIntrinsicBLAS_Complex() argument
686 call.KL = KL; in nScriptIntrinsicBLAS_Complex()
711 … jdouble betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) { in nScriptIntrinsicBLAS_Z() argument
729 call.KL = KL; in nScriptIntrinsicBLAS_Z()
/frameworks/base/rs/jni/
Dandroid_renderscript_RenderScript.cpp622 jint KL, jint KU) { in nScriptIntrinsicBLAS_Single() argument
638 call.KL = KL; in nScriptIntrinsicBLAS_Single()
655 jint KL, jint KU) { in nScriptIntrinsicBLAS_Double() argument
671 call.KL = KL; in nScriptIntrinsicBLAS_Double()
688 jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU) { in nScriptIntrinsicBLAS_Complex() argument
706 call.KL = KL; in nScriptIntrinsicBLAS_Complex()
723 jdouble betaY, jlong C, jint incX, jint incY, jint KL, jint KU) { in nScriptIntrinsicBLAS_Z() argument
741 call.KL = KL; in nScriptIntrinsicBLAS_Z()
/frameworks/rs/
DrsDefines.h467 int KL; member
/frameworks/base/services/tests/servicestests/res/raw/
Dbackup_telephony_with_password149 …4Zt��jx�fB�'��[,$<ĭ�$ �Ƿ^�����*�:�ܓ�]�`���u�X�ڡ��$�[y�R}�%x���~��k�9KL�{Xw��D��ᘠ�>R<�R�s'…