/frameworks/rs/support/java/src/androidx/renderscript/ |
D | ScriptIntrinsicBLAS.java | 645 …ement e, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int i… in validateTPMV() argument 649 if (!Ap.getType().getElement().isCompatible(e) || in validateTPMV() 657 if (Ap.getType().getY() > 1) { in validateTPMV() 661 int N = (int)Math.sqrt((double)Ap.getType().getX() * 2); in validateTPMV() 663 if (Ap.getType().getX() != ((N * (N+1)) / 2)) { in validateTPMV() 962 …public void STPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in STPMV() argument 963 int N = validateTPMV(Element.F32(mRS), Uplo, TransA, Diag, Ap, X, incX); in STPMV() 966 long apID = Ap.getID(mRS); in STPMV() 969 apID = getDummyAlloc(Ap); in STPMV() 996 …public void DTPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in DTPMV() argument [all …]
|
/frameworks/base/rs/java/android/renderscript/ |
D | ScriptIntrinsicBLAS.java | 558 …ement e, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int i… in validateTPMV() argument 562 if (!Ap.getType().getElement().isCompatible(e) || in validateTPMV() 570 if (Ap.getType().getY() > 1) { in validateTPMV() 574 int N = (int)Math.sqrt((double)Ap.getType().getX() * 2); in validateTPMV() 576 if (Ap.getType().getX() != ((N * (N+1)) / 2)) { in validateTPMV() 811 …public void STPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in STPMV() argument 812 int N = validateTPMV(Element.F32(mRS), Uplo, TransA, Diag, Ap, X, incX); in STPMV() 813 …LAS_Single(getID(mRS), RsBlas_stpmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, Ap.getID(mRS), X.getID(… in STPMV() 837 …public void DTPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in DTPMV() argument 838 int N = validateTPMV(Element.F64(mRS), Uplo, TransA, Diag, Ap, X, incX); in DTPMV() [all …]
|
/frameworks/rs/cpp/ |
D | ScriptIntrinsicBLAS.cpp | 345 … RsBlasDiag Diag, const sp<Allocation>& Ap, const sp<Allocation>& X, int incX) { in validateTPMV() argument 346 if (!Ap->getType()->getElement()->isCompatible(e) || in validateTPMV() 354 if (Ap->getType()->getY() > 1) { in validateTPMV() 358 int N = sqrt((double)Ap->getType()->getX() * 2); in validateTPMV() 359 if ((int)Ap->getType()->getX() != ((N * (N+1)) / 2)) { in validateTPMV() 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() [all …]
|
D | rsCppStructs.h | 2204 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX); 2228 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX); 2252 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX); 2276 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX); 2460 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX); 2484 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX); 2508 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX); 2532 const sp<Allocation>& Ap, const sp<Allocation>& X, int incX); 2601 void SSPMV(RsBlasUplo Uplo, float alpha, const sp<Allocation>& Ap, const sp<Allocation>& X, 2653 …id SSPR(RsBlasUplo Uplo, float alpha, const sp<Allocation>& X, int incX, const sp<Allocation>& Ap); [all …]
|
/frameworks/rs/cpu_ref/ |
D | rsCpuBLASDispatch.h | 44 const int N, const float *Ap, float *X, const int incX); 55 const int N, const float *Ap, float *X, const int incX); 77 const int N, const double *Ap, double *X, const int incX); 88 const int N, const double *Ap, double *X, const int incX); 110 const int N, const void *Ap, void *X, const int incX); 121 const int N, const void *Ap, void *X, const int incX); 143 const int N, const void *Ap, void *X, const int incX); 154 const int N, const void *Ap, void *X, const int incX); 169 const int N, const float alpha, const float *Ap, 180 const int incX, float *Ap); [all …]
|
/frameworks/av/media/libstagefright/codecs/amrwb/src/ |
D | synthesis_amr_wb.cpp | 166 int16 *Ap = &HF[L_SUBFR16k]; /* High Frequency vector */ in synthesis_amr_wb() local 167 int16 *HfA = &Ap[M16k + 1]; in synthesis_amr_wb() 385 weight_amrwb_lpc(HfA, Ap, 29491, M16k); /* fac=0.9 */ in synthesis_amr_wb() 387 wb_syn_filt(Ap, in synthesis_amr_wb() 399 weight_amrwb_lpc(Aq, Ap, 19661, M); /* fac=0.6 */ in synthesis_amr_wb() 401 wb_syn_filt(Ap, in synthesis_amr_wb()
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
D | voAMRWBEnc.c | 177 Word16 Ap[M + 1]; /* A(z) with spectral expansion */ in coder() local 432 Weight_a(p_A, Ap, GAMMA1, M); in coder() 435 Residu_opt(Ap, &speech[i_subfr], &wsp[i_subfr], L_SUBFR); in coder() 437 Residu(Ap, &speech[i_subfr], &wsp[i_subfr], L_SUBFR); in coder() 768 Weight_a(p_A, Ap, GAMMA1, M); in coder() 771 Residu_opt(Ap, error + M, xn, L_SUBFR); in coder() 773 Residu(Ap, error + M, xn, L_SUBFR); in coder() 785 Weight_a(p_A, Ap, GAMMA1, M); in coder() 786 Syn_filt(Ap,code + M, code + M, L_SUBFR / 2, code, 0); in coder() 1350 Word16 Ap[M + 1]; in synthesis() local [all …]
|