Home
last modified time | relevance | path

Searched refs:Y (Results 1 – 25 of 530) sorted by relevance

12345678910>>...22

/aosp12/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DLVM_FO_HPF.cpp71 LVM_FLOAT Y, Coefficients[13] = {-0.999996f, 0.999801f, -0.497824f, 0.322937f, -0.180880f, in LVM_FO_HPF() local
74 Y = LVM_Polynomial((LVM_UINT16)9, Coefficients, w); in LVM_FO_HPF()
76 pCoeffs->B1 = -Y; /* Store -B1 in filter structure instead of B1!*/ in LVM_FO_HPF()
78 Y = Y / 2.0f; /* A0=Y=B1/2*/ in LVM_FO_HPF()
79 Y = Y - 0.5f; /* A0=Y=(B1/2 - 0.5)*/ in LVM_FO_HPF()
81 pCoeffs->A0 = Y * FILTER_LOSS_FLOAT; /* Apply loss to avoid overflow*/ in LVM_FO_HPF()
H A DLVM_FO_LPF.cpp71 LVM_FLOAT Y, in LVM_FO_LPF() local
74 Y = LVM_Polynomial((LVM_UINT16)9, Coefficients, w); in LVM_FO_LPF()
75 pCoeffs->B1 = -Y; // Store -B1 in filter structure instead of B1! in LVM_FO_LPF()
77 Y = Y / 2.0f; // A0=Y=B1/2 in LVM_FO_LPF()
78 Y = Y + 0.5f; // A0=Y=(B1/2 + 0.5) in LVM_FO_LPF()
80 pCoeffs->A0 = Y * FILTER_LOSS_FLOAT; in LVM_FO_LPF()
H A DLVM_Polynomial.cpp45 LVM_FLOAT Y, A, XTemp, Temp, sign; in LVM_Polynomial() local
47 Y = *pCoefficients; /* Y=A0*/ in LVM_Polynomial()
54 Y += ((*pCoefficients) * sign); in LVM_Polynomial()
66 Y += Temp; in LVM_Polynomial()
72 return Y; in LVM_Polynomial()
/aosp12/art/test/010-instance/src/
H A DInstanceTest.java30 Y y = new Y(); in main()
31 Y[] yar = new Y[1]; in main()
32 Y[][] yarar = new Y[1][1]; in main()
33 Y[][][] yararar = new Y[1][1][1]; in main()
40 System.out.println("x instanceof Y (false): " + (test instanceof Y)); in main()
43 System.out.println("y instanceof Y (true): " + (test instanceof Y)); in main()
53 + (test instanceof Y[])); in main()
/aosp12/packages/apps/Camera2/src/com/android/camera/widget/
H A DPreloader.java19 public class Preloader<T, Y> implements AbsListView.OnScrollListener {
40 public interface ItemLoader<T, Y> {
46 public List<Y> preloadItems(List<T> items); in preloadItems()
51 public void cancelItems(List<Y> loadTokens); in cancelItems()
66 private ItemLoader<T, Y> mItemLoader;
67 private Queue<List<Y>> mItemLoadTokens = new LinkedBlockingQueue<List<Y>>();
72 public Preloader(int loadAheadItems, ItemSource<T> itemSource, ItemLoader<T, Y> itemLoader) { in Preloader()
115 private void registerLoadTokens(List<Y> loadTokens) { in registerLoadTokens()
127 final List<Y> loadTokensToCancel = mItemLoadTokens.poll(); in registerLoadTokens()
133 for (List<Y> loadTokens : mItemLoadTokens) { in cancelAllLoads()
/aosp12/frameworks/rs/support/java/src/androidx/renderscript/
H A DScriptIntrinsicBLAS.java339 long yID = Y.getID(mRS); in SGEMV()
371 long yID = Y.getID(mRS); in DGEMV()
403 long yID = Y.getID(mRS); in CGEMV()
435 long yID = Y.getID(mRS); in ZGEMV()
480 long yID = Y.getID(mRS); in SGBMV()
525 long yID = Y.getID(mRS); in DGBMV()
570 long yID = Y.getID(mRS); in CGBMV()
615 long yID = Y.getID(mRS); in ZGBMV()
1721 long yID = Y.getID(mRS); in SSYMV()
1763 long yID = Y.getID(mRS); in SSBMV()
[all …]
/aosp12/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicBLAS.cpp255 void *Y = nullptr; in invokeForEach() local
287 call->beta.f, (float*)Y, call->incY); in invokeForEach()
329 call->beta.d, (double*)Y, call->incY); in invokeForEach()
458 (float*)Y, call->incY); in invokeForEach()
492 (float*)Y, call->incY, (float*)A); in invokeForEach()
503 (double*)Y, call->incY); in invokeForEach()
537 (double*)Y, call->incY, (double*)A); in invokeForEach()
580 X, call->incX, Y, call->incY, A, lda); in invokeForEach()
586 call->incX, Y, call->incY, A); in invokeForEach()
627 X, call->incX, Y, call->incY, A, lda); in invokeForEach()
[all …]
H A DrsCpuBLASDispatch.h28 float *Y, const int incY);
61 double *Y, const int incY);
94 void *Y, const int incY);
127 void *Y, const int incY);
225 const void *beta, void *Y, const int incY);
229 const void *beta, void *Y, const int incY);
233 const void *beta, void *Y, const int incY);
251 const void *Y, const int incY, void *Ap);
256 const void *beta, void *Y, const int incY);
260 const void *beta, void *Y, const int incY);
[all …]
H A DrsCpuIntrinsicYuvToRGB.cpp61 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()
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()
172 rsdIntrinsicYuv_K(info->outPtr[0], Y, v, x1, x2); in kernel()
176 rsdIntrinsicYuvR_K(info->outPtr[0], Y, u, x1, x2); in kernel()
188 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]); in kernel()
[all …]
/aosp12/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsicBLAS.java285 !Y.getType().getElement().isCompatible(e)) { in validateGEMV()
304 Y.getType().getX() != expectedYDim) { in validateGEMV()
1225 !Y.getType().getElement().isCompatible(e) ) { in validateSYMV()
1240 if (Y.getType().getX() != expectedYDim) { in validateSYMV()
1249 !Y.getType().getElement().isCompatible(e)) { in validateSPMV()
1272 if (Y.getType().getX() != expectedYDim) { in validateSPMV()
1303 if (Y.getType().getX() != expectedYDim) { in validateGER()
1366 !Y.getType().getElement().isCompatible(e)) { in validateSYR2()
1394 !Y.getType().getElement().isCompatible(e)) { in validateSPR2()
1805 !Y.getType().getElement().isCompatible(e)) { in validateGERU()
[all …]
/aosp12/frameworks/rs/cpp/
H A DScriptIntrinsicBLAS.cpp189 !Y->getType()->getElement()->isCompatible(e)) { in validateGEMV()
208 (int)Y->getType()->getX() != expectedYDim) { in validateGEMV()
636 !Y->getType()->getElement()->isCompatible(e) ) { in validateSYMV()
651 if ((int)Y->getType()->getX() != expectedYDim) { in validateSYMV()
660 !Y->getType()->getElement()->isCompatible(e)) { in validateSPMV()
683 if ((int)Y->getType()->getX() != expectedYDim) { in validateSPMV()
715 if ((int)Y->getType()->getX() != expectedYDim) { in validateGER()
778 !Y->getType()->getElement()->isCompatible(e)) { in validateSYR2()
806 !Y->getType()->getElement()->isCompatible(e)) { in validateSPR2()
982 !Y->getType()->getElement()->isCompatible(e)) { in validateGERU()
[all …]
/aosp12/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DBlend.cpp259 memset(imgMos->Y.ptr[0], 255, (imgMos->Y.width * imgMos->Y.height)); in runBlend()
463 if (imgMos.Y.ptr[y][x] != imgMos.Y.ptr[y][x+1] && in DoMergeAndBlend()
516 if (imgMos.Y.ptr[y][x] != imgMos.Y.ptr[y+1][x] && in DoMergeAndBlend()
599 yimg = imgMos.Y.ptr[0]; in CropFinalMosaic()
661 yimg = imgMos.Y.ptr[0]; in PerformFinalBlending()
1054 double X, Y, z; in MosaicToFrame() local
1058 Y = y; in MosaicToFrame()
1080 z = ProjZ(trs, X, Y, 1.0); in MosaicToFrame()
1081 wx = ProjX(trs, X, Y, z, 1.0); in MosaicToFrame()
1082 wy = ProjY(trs, X, Y, z, 1.0); in MosaicToFrame()
[all …]
/aosp12/packages/services/Car/tools/ioanalyze/
H A Danalyzer.py129 if any([y > 0 for y in Y]):
130 plt.plot(X, Y, 'b-')
131 minY = min(minY, min(Y))
132 maxY = max(maxY, max(Y))
135 if any([y > 0 for y in Y]):
136 plt.plot(X, Y, 'g-')
137 minY = min(minY, min(Y))
138 maxY = max(maxY, max(Y))
141 if any([y > 0 for y in Y]):
142 plt.plot(X, Y, 'r-')
[all …]
/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/
H A DSurfaceFlinger_GetDisplayNativePrimariesTest.cpp47 primaries.red.Y = startingVal++; in populateDummyDisplayNativePrimaries()
50 primaries.green.Y = startingVal++; in populateDummyDisplayNativePrimaries()
53 primaries.blue.Y = startingVal++; in populateDummyDisplayNativePrimaries()
56 primaries.white.Y = startingVal++; in populateDummyDisplayNativePrimaries()
64 EXPECT_EQ(primaries.red.Y, startingVal++); in checkDummyDisplayNativePrimaries()
67 EXPECT_EQ(primaries.green.Y, startingVal++); in checkDummyDisplayNativePrimaries()
70 EXPECT_EQ(primaries.blue.Y, startingVal++); in checkDummyDisplayNativePrimaries()
73 EXPECT_EQ(primaries.white.Y, startingVal++); in checkDummyDisplayNativePrimaries()
/aosp12/hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/inc/
H A DIPACM_ConntrackClient.h102 #define iptodot(X,Y) \ argument
103 …IPACMLOG(" %s(0x%x): %d.%d.%d.%d\n", X, Y, ((Y>>24) & 0xFF), ((Y>>16) & 0xFF), ((Y>>8) & 0xFF), (Y
/aosp12/hardware/qcom/sdm845/data/ipacfg-mgr/ipacm/inc/
H A DIPACM_ConntrackClient.h102 #define iptodot(X,Y) \ argument
103 …IPACMLOG(" %s(0x%x): %d.%d.%d.%d\n", X, Y, ((Y>>24) & 0xFF), ((Y>>16) & 0xFF), ((Y>>8) & 0xFF), (Y
/aosp12/hardware/qcom/sm8150/data/ipacfg-mgr/ipacm/inc/
H A DIPACM_ConntrackClient.h102 #define iptodot(X,Y) \ argument
103 …IPACMLOG(" %s(0x%x): %d.%d.%d.%d\n", X, Y, ((Y>>24) & 0xFF), ((Y>>16) & 0xFF), ((Y>>8) & 0xFF), (Y
/aosp12/frameworks/base/services/tests/servicestests/res/raw/
H A Dbackup_telephony_with_password37 QY�!�c!��x���[�� �Ң�wB��dZ5K20lL�?0���h4��Cmb-�q��k�5@+r��W�/��F(C�y�p� ��Lm~d����&�%h��b�1;�…
56 %]���]��c�Yފbc�FD��.9�C�0�e�!4���r�q�$0�]~�]�W4]詪�d�Y\�[,Cϲ�����4�c/���X��qʐ���� �SD�?fRg"…
87 ���c� |�Y�A���-]Uqn~�NeIy|T[�����櫸�i�dZ}T)e�Y�n��d+r��h�|�)ýE��D��c �$q8� �ᅠE"ac`�&r��=5�…
101 mkH��aY���{:F��H&g�����:%�"���>x������eV��C�*,*��YL,i�B�������C f���{��91E?�Զ`K��V�ط0_UG�O\�覤…
102 …+p.�����3�<@�w�Q ���:Σ4p�f�.�꽡�歽9V��Dl�D�"L1�� 1i�B澕�sT'5i���9��]�ߗ�Y[���_�z,�<f��P��k�…
116 …�6k��c�,pA��L5�3��g�K7�����q�Y���E�ɧ�9��zs\��)#��,��U�%B��0�5Z+G�%1���y���:��.���>g%[G��k…
121 …�ߺ�Y�R��1��>?BPW�N�>�]�Ǡ��Hy�*E�o�}��K��dx�y���FZ/��ڄ6�ѥ�a����{������Y#F���ن箤�|1;x-9�m��…
131 Q�"Y^w�ڟ@cn��7kbi0)��m�p�`��
133 5n4�����@�H+$�I��S.�5^)��s{� ��-"+x{a.9�5v�%�gu���׀���1ӭ ��YOɑ=�.��Y����T��9�i��bE�'Y�…
142 Y<���p��ũ�*zu��S5�uR���Uc�����3�d��ƛ���`��
[all …]
H A Dbackup_telephony_no_password18 …<+~�0��A� ��cx����h;8�G9~�( �Oo,��E��OA oh>�p@ �����G8��Y� @ ��� �a��;,�D��…
22 ,������?�m�wddu����rZ���Y�:�
28 t��Y��՞6 �/��[Z���v[���*�
41 �E�wgx?3��-��r���_�vn�s��}�*8����Y;Z�i�k!�?6�p1�]����DP�=�nn���y��#ݦ�=�
58 �c����K�h�;���O�Rw�5ϣM�ô�>S%�͖^r4 3������9�GYu�?m�<^z�4��\^1%p�Y�B/ZI�1�NT�a���J❏�<��� ���y�…
69 3C��o��% ���n��(�(�Y��s%�����o4 ��39s����qmh�
86 ߨQV�CVΉ�9� �D�Y
98 l�~b�{����q�B[7�����On+�Gt��tšPw�HA��"�$|�=��bZ�Y@̟�L�"��9AF�wN
133 … 9 ��p?�69���s]O�QwXD���l7��aXg т���6�WH{A�o�H6٢��<��H��� he�� �wF���?�蚧Y:(P�:1 �������'֌�…
143 …���[_�\C�q���b��G.�.)��U'dq��$��|�mI��S�n��e>�T2w��(���nrWgy�V;���RrY~~�F���̝��M��Di�\0ʻ…
[all …]
/aosp12/bionic/libc/kernel/uapi/linux/
H A Dconst.h22 #define _AC(X,Y) X argument
25 #define __AC(X,Y) (X ##Y) argument
26 #define _AC(X,Y) __AC(X, Y) argument
/aosp12/system/bt/stack/include/
H A Da2dp_codec_api.h740 inline constexpr bitmask operator&(bitmask X, bitmask Y) { /* NOLINT */ \
741 return static_cast<bitmask>(static_cast<int>(X) & static_cast<int>(Y)); \
743 inline constexpr bitmask operator|(bitmask X, bitmask Y) { /* NOLINT */ \
744 return static_cast<bitmask>(static_cast<int>(X) | static_cast<int>(Y)); \
746 inline constexpr bitmask operator^(bitmask X, bitmask Y) { /* NOLINT */ \
747 return static_cast<bitmask>(static_cast<int>(X) ^ static_cast<int>(Y)); \
752 inline bitmask& operator&=(bitmask& X, bitmask Y) { /* NOLINT */ \
753 X = X & Y; \
756 inline bitmask& operator|=(bitmask& X, bitmask Y) { /* NOLINT */ \
757 X = X | Y; \
[all …]
/aosp12/packages/apps/DocumentsUI/tests/res/raw/
H A Dimages_tar2730 1�IJ���Y���;DϹY�8���Vo
5155Y%d�ɐ�g���Y���r=8��EUX���l�{�Q�x���Ku��Y.|��� �����T1�n���"���
7231 ��J��Ұ �CۑLn1��x�T�8!��4��zҨ�~��s�Y�{Y��W�c�2@KS���Շ�9 �c�W0Ԏ�9 }=*�!� �����3ڟ�rq��s�B…
8288 …M&Ame}�E�M�rW#�j�_�'L1/��F㜎0+�յ�2+qv� �ǂx���N�[�Z駆��{p|���m�N�a�"\���(�O����vzf�}YY
8503 …����V�2h�Ӥ�V<�-���՘f.�c�9�{�F96�EN��Ҧ���rFF+tٛZ�mY�`̀A��Wlc���y�z�Y��Y�p���x���)Q�� ��7t8…
10152 �A�+Y���tE�Y����*�-��}��x���D\[J�9
10483 …�0f< zw��v7�,o�#;�@U#��_�+h���ܦ��S�Cs��Z��;�Fc�,�fc���>�hz��jIkuY��W� ��Y��<K���HbH��P�…
10805 �*��$l�/�Y��c���!��2YۀO��y�m�Y�u�iHL�����xv�+f���~\����V
12046 …7tە�b����py���[�6L��˱�+.��ۯ��Q@��O�R�,�R2IUo����*�.x�[�p�]�ڍ��r��AfL��A��Y�j�'�����Yk��}s��P
16028 �x�Y�%���Y1��O����Wc5�=����"\I!#d�=��|]$��g�Z}��%S�x8��o _�@��!#U��Fw�~����y212 %��S�x�R…
[all …]
/aosp12/frameworks/base/tests/LegacyRestoreTest/
H A Djbmr2-encrypted-settings-abcd.ab10Y�e�Y��� ?A>Q��ª_j��a<�E��K��g�;�e���c��:k�(�K*rFA�ȏ�"��wR���&�%�?\��}����z��%������*���(…
15Yڸ ��B\�:+g�%�� H��zK ��;�Q2���+�b�w�-uy xj��^�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�г�…
/aosp12/hardware/interfaces/tv/tuner/assets/
H A Dtuner_frontend_input.es407 �KY���W��D� F���1$'YM�s�N�<��9g��3�l��[3 I��6 ���W���_:�+�H�k���{W�#c:�8f}v��\���1����…
805Y�� h��u@��G�ݶ�4���
1203 q\+Y�����x@M4#���P�p��K�q��[�Gz}�[��ţ��Un�G��1"����sˌB)�s�)��p�b��~�`�px���#渝�7��L=DG�N���…
1447 ���j4�?��}�3���\�塲kĎh�J�8)��F�@ r��(٬��0��*;���`���2?��5Y����1X�8���� Y@HSv1����0A…
1786 …����?��ׅ0T��_�x+�p�f ��EE h`^���Z$�h`��=�A��+^��({��y����Y� Ēi/��t��V�G�U��2_�…
2421 ���Y��SV�d�(��jA�^P/M���^���ؔ\q������ �P N�c����6��+F���6s�C9ť�0
3080 ����Y@�4BP@�5�j�A�(
3375 ���u��q����!��Yǘ ���_0���KN|iN*Q���Ygn a���H�7-Q����E(@&T��m�i�s"Lק�0�*K7]�C�&�KL>�…
3552 �b���v'�´�T�_�Ą���w�2��J |�@���=�6<��=F2XP I0>h���Y"�
5345 …�CTM��! 9 ٧1��b?O-@"�@lU ����iZ�y�&���n�w�)���9�M����t1�E�6$C�`����Y����~z���]6��7ղ�����…
[all …]
/aosp12/bootable/recovery/tests/testdata/
H A Drecovery_body2258 …hw/android.hardware.audio@2.0-servicey�Y����u:object_r:hal_b…
4946 @�V:��@��GE�M* ""Vy�4AɊ��x�0H?��XS>�Y
4991 Yo0�Y�" ���|�y��~� d퀀Qev��҉�BD�~�\�b���0qaҡs��y�=�������� q��"��"�z�;��)�D��Xs��Λ' ��u�…
5708 Y�J�hR�}�(,�Y�7��WS���Yd.�ɕ^���G�" �gIaa!>�&�A��f
5803 Y
6133 …e���W����������DockObserver_service���X����������oem_qmi_server_exec���Y����������otapreopt_…
6180 ���W���������irqbalance���X���������user_profile_data_file���Y���������ctl_rildaemon_prop�…
6218 …tprocd_tmpfs���W���������sysfs_nfc_power_writable���X���������fsck���Y���������per_proxy_…
6256 …�����c560���;������c570���E������c580���O������c590���=�������c60���Y������c600���c����…
6259 …�����c304���;������c314���E������c324���O������c334���#�������c34���Y������c344���c����…
[all …]

12345678910>>...22