/frameworks/rs/support/java/src/androidx/renderscript/ |
D | ScriptIntrinsicBLAS.java | 649 …ement e, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int i… in validateTPMV() argument 653 if (!Ap.getType().getElement().isCompatible(e) || in validateTPMV() 661 if (Ap.getType().getY() > 1) { in validateTPMV() 665 int N = (int)Math.sqrt((double)Ap.getType().getX() * 2); in validateTPMV() 667 if (Ap.getType().getX() != ((N * (N+1)) / 2)) { in validateTPMV() 966 …public void STPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in STPMV() argument 967 int N = validateTPMV(Element.F32(mRS), Uplo, TransA, Diag, Ap, X, incX); in STPMV() 970 long apID = Ap.getID(mRS); in STPMV() 973 apID = getDummyAlloc(Ap); in STPMV() 1000 …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 | 562 …ement e, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocation X, int i… in validateTPMV() argument 566 if (!Ap.getType().getElement().isCompatible(e) || in validateTPMV() 574 if (Ap.getType().getY() > 1) { in validateTPMV() 578 int N = (int)Math.sqrt((double)Ap.getType().getX() * 2); in validateTPMV() 580 if (Ap.getType().getX() != ((N * (N+1)) / 2)) { in validateTPMV() 815 …public void STPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in STPMV() argument 816 int N = validateTPMV(Element.F32(mRS), Uplo, TransA, Diag, Ap, X, incX); in STPMV() 817 …LAS_Single(getID(mRS), RsBlas_stpmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, Ap.getID(mRS), X.getID(… in STPMV() 841 …public void DTPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in DTPMV() argument 842 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/module/codecs/amrwb/dec/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/module/codecs/amrwb/enc/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 …]
|
/frameworks/av/media/libmediaplayerservice/fuzzer/corpus/ |
D | 40a46cd4f323d9d5d8508188f21f94ddae5bfae6 | 21 ဈ,�V������2�O���\�Ap �a(F�q�t��G0��0�p,�T�����1T:$����`���@#e+@ � ћ#���a�,�V���쿡2B�… 37 �����,�T������6�W�� �@��Yp���`F�9⋛N��[ t�C��`,�T�����1T8,����41ЄY� ����2��;mdR�F���րAp,�…
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |
/frameworks/av/media/libstagefright/httplive/fuzzer/corpus/ |
D | index9 | 195 ��qܵ$TL�,���L��#��,�л�b���%0��L>n�:�وG1���������������������������;�T'�|m��a��Q���_�Ap��ɍ$n�6… 818 …�_�Cn��7A4���R�؇%�K���V;��=��ۯ �+��b��ό��4�dG� %��@�#�qdT"s�-���!Ap춾n�������<�p;q��A�g… 882 …"ž���u�3���_�E���Q���{�-������N%�E�f홛�Tؾ5>�ɤ�T��m�ԑ�_=e�8�?�T��Ap:�9Z_�s1^]��D�'�o�…
|
D | index13 | 194 ��qܵ$TL�,���L��#��,�л�b���%0��L>n�:�وG1���������������������������;�T'�|m��a��Q���_�Ap��ɍ$n�6… 817 …�_�Cn��7A4���R�؇%�K���V;��=��ۯ �+��b��ό��4�dG� %��@�#�qdT"s�-���!Ap춾n�������<�p;q��A�g… 881 …"ž���u�3���_�E���Q���{�-������N%�E�f홛�Tؾ5>�ɤ�T��m�ԑ�_=e�8�?�T��Ap:�9Z_�s1^]��D�'�o�…
|
D | index15 | 207 ��qܵ$TL�,���L��#��,�л�b���%0��L>n�:�وG1���������������������������;�T'�|m��a��Q���_�Ap��ɍ$n�6… 830 …�_�Cn��7A4���R�؇%�K���V;��=��ۯ �+��b��ό��4�dG� %��@�#�qdT"s�-���!Ap춾n�������<�p;q��A�g… 894 …"ž���u�3���_�E���Q���{�-������N%�E�f홛�Tؾ5>�ɤ�T��m�ԑ�_=e�8�?�T��Ap:�9Z_�s1^]��D�'�o�…
|
D | index11 | 195 ��qܵ$TL�,���L��#��,�л�b���%0��L>n�:�وG1���������������������������;�T'�|m��a��Q���_�Ap��ɍ$n�6… 818 …�_�Cn��7A4���R�؇%�K���V;��=��ۯ �+��b��ό��4�dG� %��@�#�qdT"s�-���!Ap춾n�������<�p;q��A�g… 882 …"ž���u�3���_�E���Q���{�-������N%�E�f홛�Tؾ5>�ɤ�T��m�ԑ�_=e�8�?�T��Ap:�9Z_�s1^]��D�'�o�…
|
D | index10 | 199 ��qܵ$TL�,���L��#��,�л�b���%0��L>n�:�وG1���������������������������;�T'�|m��a��Q���_�Ap��ɍ$n�6… 822 …�_�Cn��7A4���R�؇%�K���V;��=��ۯ �+��b��ό��4�dG� %��@�#�qdT"s�-���!Ap춾n�������<�p;q��A�g… 886 …"ž���u�3���_�E���Q���{�-������N%�E�f홛�Tؾ5>�ɤ�T��m�ԑ�_=e�8�?�T��Ap:�9Z_�s1^]��D�'�o�…
|
D | index18 | 193 ��qܵ$TL�,���L��#��,�л�b���%0��L>n�:�وG1���������������������������;�T'�|m��a��Q���_�Ap��ɍ$n�6… 816 …�_�Cn��7A4���R�؇%�K���V;��=��ۯ �+��b��ό��4�dG� %��@�#�qdT"s�-���!Ap춾n�������<�p;q��A�g… 880 …"ž���u�3���_�E���Q���{�-������N%�E�f홛�Tؾ5>�ɤ�T��m�ԑ�_=e�8�?�T��Ap:�9Z_�s1^]��D�'�o�…
|
D | index16 | 212 ��qܵ$TL�,���L��#��,�л�b���%0��L>n�:�وG1���������������������������;�T'�|m��a��Q���_�Ap��ɍ$n�6… 835 …�_�Cn��7A4���R�؇%�K���V;��=��ۯ �+��b��ό��4�dG� %��@�#�qdT"s�-���!Ap춾n�������<�p;q��A�g… 899 …"ž���u�3���_�E���Q���{�-������N%�E�f홛�Tؾ5>�ɤ�T��m�ԑ�_=e�8�?�T��Ap:�9Z_�s1^]��D�'�o�…
|
D | index12 | 198 ��qܵ$TL�,���L��#��,�л�b���%0��L>n�:�وG1���������������������������;�T'�|m��a��Q���_�Ap��ɍ$n�6… 821 …�_�Cn��7A4���R�؇%�K���V;��=��ۯ �+��b��ό��4�dG� %��@�#�qdT"s�-���!Ap춾n�������<�p;q��A�g… 885 …"ž���u�3���_�E���Q���{�-������N%�E�f홛�Tؾ5>�ɤ�T��m�ԑ�_=e�8�?�T��Ap:�9Z_�s1^]��D�'�o�…
|
D | master_playlist | 421 ��Ϊ��@�P���`���H���%/a���[�[�vӏ{v��s�64������0��媼ہ��zK����鎧�FI���z}i^JB)֨_�"�Ap�y;�nէ���nL�… 991 ��qܵ$TL�,���L��#��,�л�b���%0��L>n�:�وG1���������������������������;�T'�|m��a��Q���_�Ap��ɍ$n�6… 1614 …�_�Cn��7A4���R�؇%�K���V;��=��ۯ �+��b��ό��4�dG� %��@�#�qdT"s�-���!Ap춾n�������<�p;q��A�g… 1678 …"ž���u�3���_�E���Q���{�-������N%�E�f홛�Tؾ5>�ɤ�T��m�ԑ�_=e�8�?�T��Ap:�9Z_�s1^]��D�'�o�…
|
D | index17 | 195 ��qܵ$TL�,���L��#��,�л�b���%0��L>n�:�وG1���������������������������;�T'�|m��a��Q���_�Ap��ɍ$n�6…
|