Home
last modified time | relevance | path

Searched refs:hb (Results 1 – 24 of 24) sorted by relevance

/aosp12/bionic/libm/upstream-freebsd/lib/msun/src/
H A De_hypotf.c26 int32_t j,k,ha,hb; in __ieee754_hypotf() local
30 GET_FLOAT_WORD(hb,y); in __ieee754_hypotf()
31 hb &= 0x7fffffff; in __ieee754_hypotf()
32 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in __ieee754_hypotf()
42 if(hb == 0x7f800000) w = b; in __ieee754_hypotf()
48 SET_FLOAT_WORD(b,hb); in __ieee754_hypotf()
50 if(hb < 0x26800000) { /* b < 2**-50 */ in __ieee754_hypotf()
52 if(hb==0) return a; in __ieee754_hypotf()
59 hb += 0x22000000; /* b *= 2^68 */ in __ieee754_hypotf()
62 SET_FLOAT_WORD(b,hb); in __ieee754_hypotf()
[all …]
H A De_hypot.c58 int32_t j,k,ha,hb; in __ieee754_hypot() local
62 GET_HIGH_WORD(hb,y); in __ieee754_hypot()
63 hb &= 0x7fffffff; in __ieee754_hypot()
64 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in __ieee754_hypot()
77 if(((hb^0x7ff00000)|low)==0) w = b; in __ieee754_hypot()
83 SET_HIGH_WORD(b,hb); in __ieee754_hypot()
85 if(hb < 0x20b00000) { /* b < 2**-500 */ in __ieee754_hypot()
89 if((hb|low)==0) return a; in __ieee754_hypot()
97 hb += 0x25800000; /* b *= 2^600 */ in __ieee754_hypot()
100 SET_HIGH_WORD(b,hb); in __ieee754_hypot()
[all …]
H A De_hypotl.c52 int32_t j,k,ha,hb; in hypotl() local
56 GET_HIGH_WORD(hb,y); in hypotl()
57 hb &= 0x7fff; in hypotl()
58 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in hypotl()
61 if((ha-hb)>DESW(MANT_DIG+7)) {return a+b;} /* x/y > 2**(MANT_DIG+7) */ in hypotl()
75 ha -= DESW(MAX_EXP/2+88); hb -= DESW(MAX_EXP/2+88); in hypotl()
78 SET_HIGH_WORD(b,hb); in hypotl()
80 if(hb < ESW(-(MAX_EXP/2-12))) { /* b < 2**-(MAX_EXP/2-12) */ in hypotl()
81 if(hb <= 0) { /* subnormal b or 0 */ in hypotl()
92 hb += DESW(MAX_EXP/2+88); in hypotl()
[all …]
H A Ds_fma.c142 double ha, hb, la, lb, p, q; in dd_mul() local
150 hb = b - p; in dd_mul()
151 hb += p; in dd_mul()
152 lb = b - hb; in dd_mul()
154 p = ha * hb; in dd_mul()
155 q = ha * lb + la * hb; in dd_mul()
H A Ds_fmal.c138 long double ha, hb, la, lb, p, q; in dd_mul() local
146 hb = b - p; in dd_mul()
147 hb += p; in dd_mul()
148 lb = b - hb; in dd_mul()
150 p = ha * hb; in dd_mul()
151 q = ha * lb + la * hb; in dd_mul()
/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/utils/
H A DRotationAnimationUtilsTest.java54 HardwareBuffer hb = swBitmapToHardwareBuffer(swBitmap); in blackLuma() local
55 float borderLuma = RotationAnimationUtils.getMedianBorderLuma(hb, mColorSpace); in blackLuma()
62 HardwareBuffer hb = swBitmapToHardwareBuffer(swBitmap); in whiteLuma() local
63 float borderLuma = RotationAnimationUtils.getMedianBorderLuma(hb, mColorSpace); in whiteLuma()
70 HardwareBuffer hb = swBitmapToHardwareBuffer(swBitmap); in unevenBitmapDimens() local
71 float borderLuma = RotationAnimationUtils.getMedianBorderLuma(hb, mColorSpace); in unevenBitmapDimens()
79 HardwareBuffer hb = swBitmapToHardwareBuffer(swBitmap); in whiteImageBlackBorderLuma() local
80 float borderLuma = RotationAnimationUtils.getMedianBorderLuma(hb, mColorSpace); in whiteImageBlackBorderLuma()
88 HardwareBuffer hb = swBitmapToHardwareBuffer(swBitmap); in blackImageWhiteBorderLuma() local
89 float borderLuma = RotationAnimationUtils.getMedianBorderLuma(hb, mColorSpace); in blackImageWhiteBorderLuma()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DDppMetricsTest.java82 HistogramBucketInt32 hb = mWifiDppLogProto.dppOperationTime[index]; in checkOperationBucketEqualsTo() local
83 assertEquals(hb.count, value); in checkOperationBucketEqualsTo()
109 for (WifiMetricsProto.WifiDppLog.DppFailureStatusHistogramBucket hb : in checkDppFailures()
111 if (hb.dppStatusType == key) { in checkDppFailures()
112 assertEquals(hb.count, value); in checkDppFailures()
133 for (WifiMetricsProto.WifiDppLog.DppConfiguratorSuccessStatusHistogramBucket hb : in checkDppSuccesses()
135 if (hb.dppStatusType == key) { in checkDppSuccesses()
136 assertEquals(hb.count, value); in checkDppSuccesses()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/util/
H A DIntHistogram.java293 HistogramBucketInt32 hb = new HistogramBucketInt32(); in toProto()
294 hb.start = start; in toProto()
295 hb.end = end; in toProto()
296 hb.count = count; in toProto()
297 return hb; in toProto()
/aosp12/frameworks/native/libs/vr/libdvr/tests/
H A Ddvr_buffer_queue-test.cpp415 AHardwareBuffer* hb = nullptr; in TEST_F() local
416 ASSERT_EQ(0, api_.WriteBufferGetAHardwareBuffer(wbs[i], &hb)); in TEST_F()
423 whbs.emplace(buffer_id, hb); in TEST_F()
427 ASSERT_EQ(hb, whb_it->second); in TEST_F()
450 AHardwareBuffer* hb = nullptr; in TEST_F() local
451 ASSERT_EQ(0, api_.ReadBufferGetAHardwareBuffer(rbs[i], &hb)); in TEST_F()
458 rhbs.emplace(buffer_id, hb); in TEST_F()
462 ASSERT_EQ(hb, rhb_it->second); in TEST_F()
/aosp12/frameworks/base/core/jni/
H A Dandroid_graphics_GraphicBuffer.cpp260 jobject hb) { in android_graphics_GraphicBuffer_createFromHardwareBuffer() argument
261 AHardwareBuffer* ahb = android_hardware_HardwareBuffer_getNativeHardwareBuffer(env, hb); in android_graphics_GraphicBuffer_createFromHardwareBuffer()
/aosp12/frameworks/minikin/doc/
H A Dminikin_style.md28 #include <hb.h> // Other library, HarfBuzz, header file.
/aosp12/frameworks/base/native/android/
H A DAndroid.bp81 "libharfbuzz_ng", // Only for including hb.h via minikin
/aosp12/build/make/tools/droiddoc/templates-pdk/assets/
H A Dprettify.js3 …"break",bb="case",cb="continue",db="delete",eb="do",fb="else",gb="finally",hb="instanceof",ib="ret… variable
11 …,J,Ca,Da,Ea,Fa,Ga,Ha,Ia,L,M,Ta,Ua,Va,Wa,O,Xa,Ya,Za,$a,ab,bb,cb,db,eb,fb,gb,hb,ib,jb,kb,lb],b=mb,c=…
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/aware/
H A DWifiAwareMetricsTest.java664 for (WifiMetricsProto.WifiAwareLog.HistogramBucket hb: hba) { in countAllHistogramSamples()
665 sum += hb.count; in countAllHistogramSamples()
/aosp12/frameworks/base/services/tests/servicestests/res/raw/
H A Dbackup_telephony_with_password152 … B�?���cg�ٟ&���k1����k�B�Lv��A�_�m����@�K�]�|,��3*����y��ղ['�0hb�x{���C�ً�,������Z…
/aosp12/hardware/interfaces/tv/tuner/assets/
H A Dtuner_frontend_input.ts375 BA��(i{��U�9�� 6�:e���S(*�T�h@ �]�ӛ��k����:eJy�X��dŠb�^��{��4:C�hb���y´�ZF�ఠ���1 ��|?���G…
2786 …aG��5�f��_Lza�?���0P�'���DE �'�W�����kAts�X�R"��� #jЗ�s� h�7�i4�:hb��yœh0�ԃ`5oJX�…
5407 …���vɐo�X~���S���!S��}���d�c�貸,��T���28��]x�?�X �J���u�v��L!5P�Z���`U�qi�hb������$R#�����us���(�…
H A Dtuner_frontend_input.es435 …��p���4�#��X��㭎i6�9���Mt����:��w��\�,#���H�zˤ¸=����n�9m��j?D�J[��3F�hb� l�w�V27֑FCB��ꔅp…
674 BA��(i{��U�9�� 6�:e���S(*�T�h@ �]�ӛ��k����:eJy�X��dŠb�^��{��4:C�hb���y´�ZF�ఠ���1 ��|?�����…
1715 :ͦ�/ �-.��dh04�.`H#6���ڿä�>,�c=�# ����8ˁ�Z �g������P���0�&�C�?�*4hb~�K�^��/0���y�_Ձ…
1990 …�ד���Hп~Hx�"�� �n-���Mp��N%A;����b�-8��N�.a�C�2��%����{����>u�k��"�MK�_�hb]t w�\c��|�]�Q@ُ��…
2372 …���w�춁�g�����a�@�ȏ( c����J2�P��gB������.:1;錽�k����ע$*���*�1֭qEI#�����C�Cc�hb������4��%
2779 …Hmu�a�5�f��_Lza�?���0P�'���DE �'�W�����kAts�X�R"��� #jЗ�s� h�7�i4�:hb��yœh0�ԃ`5oJX�…
4575 …g��$D٦��ɄA��qA;������$���u���! �"v_��q��/pK��m�����B���u8~r%2O�Ê�@-I�7hb\ ��%���Z_�˧�ߣ�>|8�…
5584 …���vɐo�X~���S���!S��}���d�c�貸,��T���28��]x�?�X �J���u�v��L!5P�Z���`U�qi�hb������$R#�����us���(�…
/aosp12/frameworks/base/native/graphics/jni/fuzz/corpus/
H A Dsample_raf.raf865 …�����֗<�]����~nM�;�qJ��\&��ɞ��P!�O�A��U����������'��9`0@��+pl���Rd� �hb�I��M#��@�,��q?�!h…
2275 �"�y9'�L��v=h���������������-Q� 8�c�/#�@���4��������c�n'�)��~���-ƒhb�'��A�zu�֙�w�ڃ�…
10376 �)�3B�"? �+��AU�?�C(d?��?D*�@hb@��)
11063 …������������������������������������S(��?��>��'ҳ<a<��(�3<e=��(�C<p"?�c'�>hb<�c)�c?o2?߳)�C=~�;�c*…
13796 CZ�/h�#d0d#s�b0�r�b_1m��R^�0i��R2j�*�w0hb�or1o��g�0NB
19807 �*~>��&�S*lA�R+�s+}B@hb)ރ*�?j*
22269 …|�?�2+4*h�>o�)�t)g�>rR)�s)��>\�)��(w@��*D+wR>u�*�)��?�"*��)}�=|�*�c)��?hb* d)�>xb)��)��@��*��…
23360 …s*�#>j�<�*գ>w�>��)�;q�< �(�=q�=��(�<j�=�*��=�B>��(��?�<�s*��;mr<�#)��>hb>�S)�T>h�<�S*�=��=��…
24358 …��������������������������������������������ă(�3<Z">��'�;gB>��(�>rR=�S(��;hb=�(�s=|b<��)�>s�=�s…
26039 …/��/���r-v�.�2Ղ.~�/���0h.����,��.�rݒ.t�/��˲/�/΢�b-|/��2.r�.²�-hb.��-r�,��"/zB/�…
[all …]
/aosp12/packages/apps/TV/tuner/tests/assets/
H A Dcapture_kqed.ts24525 …���� A)*l�����7��.�$��& 0��q�|�JZ!�-$`��H����<�>�sp�5v4�@[.P��ɤ�0���/*O#�"G�1�hb�
56812 z w������Iz��hbX�ԚBG��Y=O��
88311 �}�8�>����hbG�1����x�`��X�ɸ p)�#��p `@�@�����D
90294 O�jhP ȿ�hb�ݥ?�Д-�����lj��(�@�d�@'��":*�00��1P!��) �`8�O�(#�`7E ז&p���(&��R����Y…
99282 (&h�{�h����@���?+`� �!��U���@� ��V���hb��D&��ﭔ�@���v@*�.�����=qE�NYE�G�1K�3x…
100401 …``��U�� ?���e���"�PK���X01�V-a�,��0�"� �`d��b_1�1#y!�%!�>)OG�Q�9ƭ�hb��>���3 E�"Mצ�.l�n�G…
111896 ^�|�#��|;�_:H����!G�1�]�=D<��hb
175299 �v��3� ~��@p��[�>��hb@�E��������(����v���j��4�#%!F�jSdg�R (����(9�x;���k
213618 BPf�C�5�;���� H7����43�,g��LK��NYG�12hb"�܃�\��2��������FتѲs���E�L��U��Q�>�j��U`lepգ…
228568 …G�1A Ͼ�PS�w�I�@#�:ρ��臐�ex>��\&�`��s���h��! `�d�%���:�1J��CI��hb����3�r�`��0��`(…
[all …]
/aosp12/system/extras/simpleperf/scripts/inferno/
H A Dinferno.b641 …EtKyexgV59aIutG4a+IiCwxhb8iIiIishSs1ab84G9TMg6q7d1B9fghvruLVwXWyus8INixQt+5hb/zbqs8x/FmMpQffTWjafX…
/aosp12/art/build/boot/hiddenapi/
H A Dhiddenapi-max-target-o-low-priority.txt4110 Ljava/nio/CharBuffer;->hb:[C
4246 Ljava/nio/DoubleBuffer;->hb:[D
4335 Ljava/nio/FloatBuffer;->hb:[F
4342 Ljava/nio/IntBuffer;->hb:[I
4349 Ljava/nio/LongBuffer;->hb:[J
4372 Ljava/nio/ShortBuffer;->hb:[S
/aosp12/packages/apps/DocumentsUI/tests/res/raw/
H A Dimages_tar2842 …��J�S����;MWծ -��ߐH`:g��?�}�����p9���=}{V��h?|'s���c7hU�TN�z�hb�P���[N5���}O���O�A׵O
3250 ���G;2���^�|��[$���{�υ5��Hc�� ����<Q�_y,'�#�a�Gj�hb�l��:w��{�La�
4650 7ĞI=I�Ӻ-hb���R���;UG��ps����vד_�yc�1��}=k?_���Z�;d8PH��s�M�2�����n'�hg��ik�z�0K���s�O h�ut…
7810 �g�ހ��<�c�Ns�p���֣,%���\҅� ������c��v��#�� b����֙�{F����pRG|��_��Њhb�"�����nb<��' �x�…
11649 eFq,;c�y������j�����T��Rq�z���]^��hb��F'/�0�œ�Hl�T��G\#����3�{}+2��M�!v�@ u��۵���4�����W…
11745 …�v��I���>�R��L�Xi�4�����q�5�p�,�r���}*I�i���1�@���Px��b���2��&W��⢓j�[ ��Oj�BFN��oz��8A�'�hb
11986 …��J�To�5�����\�U�a/���f����o�@ճqi+`E&KEϮG=�|#���i��e�]��>����6Cz�ʹ��#rȃu�pz��~��kK�#7[hb
12509 …TR�[�)Ya\�ʮ�bj�l5�06`�L����u5��i�3*����}��@�T/����8�޵Ъ�[�8�>+�^#hb�Q���=r*����[=��@ʾy�G…
13360 …919��&܏ˊ�� �}����[�H�K�WE�xoO��g�8�������nǜ�s�$O*�{�.��K�-����1Џj�|�hb����^�T����+9M[B…
14886 …����/8�OaQ�I����4� t� ��}ޛ�63K ���T�2D ��1қ�� ��w�U�$��)�5J��Opy�hb��|Ò����LD.7�x�7n…
[all …]
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/aosp12/packages/inputmethods/LatinIME/dictionaries/
H A Dro_wordlist.combined.gz1dictionary=main:ro,locale=ro,description=Română,date=1412325511, ...