/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
D | LVM_FO_LPF.cpp | 73 LVM_FLOAT Y,Coefficients[13] = {-0.999996f, in LVM_FO_LPF() local 84 Y=LVM_Polynomial((LVM_UINT16)9, Coefficients, w); in LVM_FO_LPF() 85 pCoeffs->B1 = -Y; // Store -B1 in filter structure instead of B1! in LVM_FO_LPF() 87 Y = Y / 2.0f; // A0=Y=B1/2 in LVM_FO_LPF() 88 Y = Y + 0.5f; // A0=Y=(B1/2 + 0.5) in LVM_FO_LPF() 90 pCoeffs->A0 = Y * FILTER_LOSS_FLOAT; in LVM_FO_LPF()
|
D | LVM_FO_HPF.cpp | 73 LVM_FLOAT Y,Coefficients[13] = {-0.999996f, in LVM_FO_HPF() local 86 Y=LVM_Polynomial((LVM_UINT16)9, Coefficients, w); in LVM_FO_HPF() 88 pCoeffs->B1 = -Y; /* Store -B1 in filter structure instead of B1!*/ in LVM_FO_HPF() 90 Y = Y / 2.0f; /* A0=Y=B1/2*/ in LVM_FO_HPF() 91 Y = Y - 0.5f; /* A0=Y=(B1/2 - 0.5)*/ in LVM_FO_HPF() 93 pCoeffs->A0 = Y * FILTER_LOSS_FLOAT; /* Apply loss to avoid overflow*/ in LVM_FO_HPF()
|
D | LVM_Polynomial.cpp | 48 LVM_FLOAT Y,A,XTemp,Temp,sign; in LVM_Polynomial() local 50 Y = *pCoefficients; /* Y=A0*/ in LVM_Polynomial() 59 Y += ((*pCoefficients) * sign); in LVM_Polynomial() 74 Y += Temp; in LVM_Polynomial() 80 return Y; in LVM_Polynomial()
|
D | LVM_Power10.cpp | 58 LVM_FLOAT Y,Coefficients[13]={0.999906f, in LVM_Power10() local 71 Y=LVM_Polynomial((LVM_UINT16)11, in LVM_Power10() 74 return Y; in LVM_Power10()
|
/frameworks/rs/cpu_ref/ |
D | rsCpuIntrinsicYuvToRGB.cpp | 61 int16_t Y = ((int16_t)y) - 16; in rsYuvToRGBA_uchar4() local 66 p.x = (Y * 298 + V * 409 + 128) >> 8; in rsYuvToRGBA_uchar4() 67 p.y = (Y * 298 - U * 100 - V * 208 + 128) >> 8; in rsYuvToRGBA_uchar4() 68 p.z = (Y * 298 + U * 516 + 128) >> 8; in rsYuvToRGBA_uchar4() 94 extern "C" void rsdIntrinsicYuv_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, size… 95 extern "C" void rsdIntrinsicYuvR_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, siz… 96 extern "C" void rsdIntrinsicYuv2_K(void *dst, const uchar *Y, const uchar *u, const uchar *v, size_… 118 const uchar *Y = pinY + (info->current.y * strideY); in kernel() local 154 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]); in kernel() 163 rsdIntrinsicYuv2_K(info->outPtr[0], Y, u, v, x1, x2); in kernel() [all …]
|
D | rsCpuIntrinsicBLAS.cpp | 255 void *Y = nullptr; in invokeForEach() local 279 initABC(ain, sizeof(float), &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach() 281 lda, (float*)X, call->incX, call->beta.f, (float*)Y, call->incY); in invokeForEach() 284 initABC(ain, sizeof(float), &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach() 287 call->beta.f, (float*)Y, call->incY); in invokeForEach() 321 initABC(ain, sizeof(double), &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach() 323 lda, (double*)X, call->incX, call->beta.d, (double*)Y, call->incY); in invokeForEach() 326 initABC(ain, sizeof(double), &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach() 329 call->beta.d, (double*)Y, call->incY); in invokeForEach() 363 initABC(ain, sizeof(float)*2, &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach() [all …]
|
D | rsCpuBLASDispatch.h | 28 float *Y, const int incY); 33 const int incX, const float beta, float *Y, const int incY); 61 double *Y, const int incY); 66 const int incX, const double beta, double *Y, const int incY); 94 void *Y, const int incY); 99 const int incX, const void *beta, void *Y, const int incY); 127 void *Y, const int incY); 132 const int incX, const void *beta, void *Y, const int incY); 163 const float beta, float *Y, const int incY); 167 const float beta, float *Y, const int incY); [all …]
|
/frameworks/rs/support/java/src/androidx/renderscript/ |
D | ScriptIntrinsicBLAS.java | 282 …validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) { 288 !Y.getType().getElement().isCompatible(e)) { 291 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { 307 Y.getType().getX() != expectedYDim) { 327 …nt TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGEMV() argument 328 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local 335 long yID = Y.getID(mRS); in SGEMV() 339 yID = getDummyAlloc(Y); in SGEMV() 359 … TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGEMV() argument 360 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local [all …]
|
/frameworks/base/rs/java/android/renderscript/ |
D | ScriptIntrinsicBLAS.java | 275 …validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) { in validateGEMV() argument 281 !Y.getType().getElement().isCompatible(e)) { in validateGEMV() 284 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateGEMV() 300 Y.getType().getX() != expectedYDim) { in validateGEMV() 320 …nt TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGEMV() argument 321 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local 324 …gemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in SGEMV() 342 … TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGEMV() argument 343 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local 346 …gemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in DGEMV() [all …]
|
/frameworks/rs/cpp/ |
D | ScriptIntrinsicBLAS.cpp | 184 const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY) { in validateGEMV() argument 189 !Y->getType()->getElement()->isCompatible(e)) { in validateGEMV() 192 if (X->getType()->getY() > 1 || Y->getType()->getY() > 1) { in validateGEMV() 208 (int)Y->getType()->getX() != expectedYDim) { in validateGEMV() 214 int incX, float beta, const sp<Allocation>& Y, int incY) { in SGEMV() argument 215 validateGEMV(mRS, Element::F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() 221 beta, Y->getID(), incX, incY, 0, 0); in SGEMV() 225 int incX, double beta, const sp<Allocation>& Y, int incY) { in DGEMV() argument 226 validateGEMV(mRS, Element::F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() 232 beta, Y->getID(), incX, incY, 0, 0); in DGEMV() [all …]
|
/frameworks/base/services/tests/servicestests/res/raw/ |
D | backup_telephony_with_password | 11 �[=�4m���`�x�����\R�}�� �f��h�?4��}J$̩2 �N�Y.]�t������3{� �/m 12 6�Y�N��&E4�4��S�e�u���� g��@c"�I-v�0B_��f�EǧZ��'��8^�կ0������?{�v5"�ہ2�U"���W��wSbG!�����eU… 24 �,e���=����3��SM��@Ɉ�ɌT I��'�ɽ��o�c�m��3;,�I���?/�i�s��X��i�3Y��U?�k�g��x�0��k��}E⣛,��… 26 …�%e�Zo�C�I��"N�]���{%���� �?"�g�;�S��ڟѧ -�Yy��I�55ң�z�s�-0�s �Џ�ԃX��s��E���XO~8�qʝ���K4��… 33 …�Gӗ��a�v�i�<]c�Ұ/ɺEg�q��sn6�u�.I��/�<tM�T{&k}��l�~jyB��2C%�@��3Y[�����J�,��5~�z�贍��… 34 >S�B�zH�o����f]�����'���P��[>ᯇ���yy����iҹ�1^Y:�d��<�W�S���v$QQ�1��3�칉���{��8�է����:_%4f… 37 …Y�!�c!��x���[���Ң�wB��dZ5K20lL?0���h4��Cmb-�q��k�5@+r��W�/��F(C�y�p���Lm~d����&�%h��b�1;�L… 38 Ɨ�u�7��*:��,ίr�(�v$!5�&���Y�!���Tig(&X_6q�>��5�2��@e��rf��[cDL��C=q��PR�Gi{A���2N��P�x�$�… 48 �6�Zd�_J������t���� ���|�T���"�"��w���qru�M5n��$ �D�(X�Y�,��D>_�XH��W[����N�W�X ����…
|
D | backup_telephony_no_password | 18 …<+~�0�A� ��cx����h;8�G9~�(�Oo,�E��OAoh>�p@ �����G8��Y�@ ����a�;,�D��… 22 ,����?�m�wddu����rZ���Y�:� 26 …Yt'r57���W�.0�?���q�Dp��:P,x-���"2�����c�_M�bU��l�3��oP!�ws;�B�_�A,����s�ͩo�綩����j$�-(… 28 t��Y��՞6�/��[Z���v[���*� 33 …�D��g:���z6�J��g�G�N�t)R��Ɔ�6dY���ϚJ�@/��W�"�K�L��\����f�Lk�U��Oa�L���>�Y�,�O��>u�65���^̚*… 35 …Y�1�9��Pɑ]�v3g�9�R)_1��v!(��q�yϒ� +ZV���g߂�>ۛP��i� 2��p!pAΖ/���*7�)f�*�Dk��[�oƚ��-u:�}�P���… 41 �E�wgx?3��-��r���_�vn�s��}�*8����Y;Z�i�k!�?6�p1�]����DP�=�nn���y��#ݦ�=� 44 …t��((���sO&�O�1���[6����~Y��ȼ��tQ��c�4<j���R��+�ٳ�i"�&N��f�~\T[q�&�w.Qa/g���䇚U汽~������… 47 ���������O����)/<��.#����t�O^5{r���B!�[J�n���l�A�O`���ェ�w�Q��j{;Ш���"_���Y<�e�^i����… 49 …�Z��R�7��z�\=DW�T���$^>n�3=�R�r@)��'-��d�@��cP@>�T�쵲,����r~݆ͱ6#VX_�kY�s�!��<QW�Y�����E�
|
/frameworks/base/tests/LegacyRestoreTest/ |
D | jbmr2-encrypted-settings-abcd.ab | 10 …Y�e�Y��� ?A>Q��ª_j��a<�E��K��g�;�e���c��:k�(�K*rFA�ȏ�"��wR���&�%�?\��}����z��%������*���(… 15 …Yڸ ��B\�:+g�%��H��zK��;�Q2���+�b�w�-uyxj��^�qqy��>� ��`�x���⼖��0���I�0j��T�z�,aB�… 17 n��ɭ=��aA�|ݽ��8E.�h�xi�Δ��e������/��óQu|A%Y�Mp�5���Y1O���C�;X!Oq1H����}���z��~TA<2xI|KL�г�…
|
D | kk-fixed-encrypted-settings-abcd.ab | 11 Ȫ��ۏh:$5K3c�����d�a멂�Y����7�����$#A�%>R�J��+k>���f��S��p��[��c�~`��pr�&۹l 14 Y?^[��S�|�+����u��H!�D���F�o�7�_-�p� 18 ��K��KVY�����i�Y�����j<��KC��I7��#Xu13Z�1w㵀;�T� �{��U�C����sKþ�8%:���% #��P�@o($���û"��a����… 19 …@����/�6Zҁ���}�jk�-�(��H�O����ù��8y^����������1�LX���,#T{5��B�9N��Y$��;Uj��ʶ��[���Z�… 23 �!�?��Xz`S;�1;�A�v̖%_yj��S����u�Y�Z������_�=��u�h��J��*.��k���YM�q���v'�.�6b>��>}���b;��5�… 24 ��Y�C%M3o���iz�Kpf0e����33>�g�k�q�BX;��_�5NK6mM�)]���/��^��5�>@��
|
/frameworks/layoutlib/create/tests/mock_data/mock_android/fake/ |
D | InnerTest.java | 73 public <X, Y> void genericMethod2(X a, List<Y> b) { in genericMethod2() 76 public <X, Y extends InnerTest> void genericMethod3(X a, List<Y> b) { in genericMethod3()
|
/frameworks/rs/tests/java_api/HelloComputeNDK/libhellocomputendk/ |
D | helloComputeNDK.cpp | 24 jint Y, in Java_com_example_android_rs_hellocomputendk_HelloComputeNDK_nativeMono() argument 43 sp<const Type> t = Type::create(rs, e, X, Y, 0); in Java_com_example_android_rs_hellocomputendk_HelloComputeNDK_nativeMono() 53 inputAlloc->copy2DRangeFrom(0, 0, X, Y, inputPtr); in Java_com_example_android_rs_hellocomputendk_HelloComputeNDK_nativeMono() 56 outputAlloc->copy2DRangeTo(0, 0, X, Y, outputPtr); in Java_com_example_android_rs_hellocomputendk_HelloComputeNDK_nativeMono()
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
D | UT_check_dims.java | 50 int Y = 7; in initializeGlobals() local 51 typeBuilder.setX(X).setY(Y); in initializeGlobals() 55 mData = new int[X * Y]; in initializeGlobals() 56 for (int i = 0; i < X * Y; i++) { in initializeGlobals()
|
D | UT_alloc_supportlib.java | 43 int Y = 7; in initializeGlobals() local 46 s.set_dimY(Y); in initializeGlobals() 48 typeBuilder.setX(X).setY(Y); in initializeGlobals() 55 typeBuilder.setX(X).setY(Y).setFaces(true); in initializeGlobals()
|
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
D | UT_check_dims.java | 48 int Y = 7; in initializeGlobals() local 49 typeBuilder.setX(X).setY(Y); in initializeGlobals() 53 mData = new int[X * Y]; in initializeGlobals() 54 for (int i = 0; i < X * Y; i++) { in initializeGlobals()
|
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/ |
D | UT_alloc.java | 34 int Y = 7; in initializeGlobals() local 37 s.set_dimY(Y); in initializeGlobals() 39 typeBuilder.setX(X).setY(Y); in initializeGlobals() 45 typeBuilder.setX(X).setY(Y).setFaces(true); in initializeGlobals()
|
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/ |
D | UT_alloc.java | 34 int Y = 7; in initializeGlobals() local 37 s.set_dimY(Y); in initializeGlobals() 39 typeBuilder.setX(X).setY(Y); in initializeGlobals() 45 typeBuilder.setX(X).setY(Y).setFaces(true); in initializeGlobals()
|
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | UT_alloc.java | 34 int Y = 7; in initializeGlobals() local 37 s.set_dimY(Y); in initializeGlobals() 39 typeBuilder.setX(X).setY(Y); in initializeGlobals() 45 typeBuilder.setX(X).setY(Y).setFaces(true); in initializeGlobals()
|
/frameworks/base/core/java/android/view/ |
D | OrientationEventListener.java | 122 float Y = -values[_DATA_Y]; in onSensorChanged() local 124 float magnitude = X*X + Y*Y; in onSensorChanged() 128 float angle = (float)Math.atan2(-Y, X) * OneEightyOverPi; in onSensorChanged()
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibonlysrc/com/android/rs/unittest/ |
D | UT_alloc_supportlib.java | 41 int Y = 7; in initializeGlobals() local 44 s.set_dimY(Y); in initializeGlobals() 46 typeBuilder.setX(X).setY(Y); in initializeGlobals() 53 typeBuilder.setX(X).setY(Y).setFaces(true); in initializeGlobals()
|
/frameworks/base/libs/hwui/utils/ |
D | Color.cpp | 153 float Y = fy > D ? fy * fy * fy : (1.0f / B) * (fy - C); in toXyz() local 157 v[1] = Y * ILLUMINANT_D50_XYZ[1]; in toXyz() 165 float Y = v[1] / ILLUMINANT_D50_XYZ[1]; in fromXyz() local 169 float fy = Y > A ? pow(Y, 1.0f / 3.0f) : B * Y + C; in fromXyz()
|