Searched refs:l4 (Results 1 - 25 of 30) sorted by relevance

12

/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp3-generic-lambda-1y.cpp44 auto l4 = [](decltype(auto) a) -> int { return 0; }; //expected-error{{decltype(auto)}} local
52 auto l4 = [](auto (*fp)(int)) -> int { return fp(3); }; //expected-error{{no viable conversion from returned value of type 'Local' to function return type 'int'}} local
53 l4(&Local::ifi);
54 l4(&Local::cfi);
55 l4(&Local::dfi);
56 l4(&Local::localfi); //expected-note{{in instantiation of function template specialization}}
/external/clang/test/SemaCXX/
H A Dexceptions.cpp40 goto l4; // expected-error {{cannot jump}}
47 goto l4; // expected-error {{cannot jump}}
54 goto l4; // expected-error {{cannot jump}}
59 l4:
61 goto l4;
68 goto l4; // expected-error {{cannot jump}}
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
H A DPropertyChangeSupportTest.java79 PropertyChangeListener l4 = new PropertyChangeListenerProxy("myProp",
96 sup.addPropertyChangeListener(l4);
100 assertNotSame(l4, sup.getPropertyChangeListeners()[0]);
427 PropertyChangeListener l4 = new MockPropertyChangeListener();
431 sup.addPropertyChangeListener("myProp2", l4);
457 PropertyChangeListener l4 = new MockPropertyChangeListener();
461 sup.addPropertyChangeListener("myProp2", l4);
482 PropertyChangeListener l4 = new MockPropertyChangeListener();
486 sup.addPropertyChangeListener("myProp3", l4);
614 MockPropertyChangeListener l4
[all...]
/external/clang/test/CodeGen/
H A Dpartial-reinitialization1.c60 struct P4 l4 = { { L"foo" }, .x[2] = L'x' }; variable in typeref:struct:P4
H A Drenderscript.c132 typedef struct {long l1, l2, l3, l4, l5, l6, l7, l8, l9; } sLong9; member in struct:__anon2242
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
H A Dcv_util_unittest.py36 l4 = np.asfarray((1, 1, 0, 0))
37 self.assertFalse(self.cv_util.AreLinesOrthogonal(l3, l4,
54 l4 = np.asfarray((2, 1, 1, 1))
56 ret, p = self.cv_util.FindLineIntersection(l4, l5)
74 l4 = (1, 1, 1, 1)
75 lines = self.cv_util.ExtendLines(np.asfarray([l1, l2, l3, l4],
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
H A DMethodAnalyzerTest.java412 Label l4 = new Label();
413 method.visitTableSwitchInsn(1, 3, l4, new Label[] { l2, l3, l2 });
420 method.visitLabel(l4);
421 method.visitLineNumber(1005, l4);
510 Label l4 = new Label();
518 method.visitJumpInsn(Opcodes.GOTO, l4);
522 method.visitLabel(l4);
523 method.visitLineNumber(1004, l4);
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_deadlock_detector_test.cc147 uptr l4 = d.newNode(4); local
157 // l3=>l4=>l5
159 d.onLock(&dtls, l4);
161 d.onUnlock(&dtls, l4);
170 locks.insert(l4);
185 // l4=>l3
186 EXPECT_FALSE(d.onLock(&dtls, l4));
188 d.onUnlock(&dtls, l4);
196 // make sure no edges from or to l0,l1,l4,l5 left.
213 // lt => l4
425 uptr l4 = d.newNode(0); local
[all...]
/external/libvpx/libvpx/vp9/encoder/mips/msa/
H A Dvp9_fdct16x16_msa.c158 v8i16 l0, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, l12, l13, l14, l15; local
161 LD_SH8(input, 16, l0, l1, l2, l3, l4, l5, l6, l7);
162 TRANSPOSE8x8_SH_SH(l0, l1, l2, l3, l4, l5, l6, l7, r0, r1, r2, r3, r4, r5, r6,
183 LD_SH8(input, 16, l0, l1, l2, l3, l4, l5, l6, l7);
184 TRANSPOSE8x8_SH_SH(l0, l1, l2, l3, l4, l5, l6, l7, r0, r1, r2, r3, r4, r5, r6,
339 v8i16 l0, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, l12, l13, l14, l15; local
342 LD_SH16(input, 8, l0, l8, l1, l9, l2, l10, l3, l11, l4, l12, l5, l13, l6, l14,
344 TRANSPOSE8x8_SH_SH(l0, l1, l2, l3, l4, l5, l6, l7, r0, r1, r2, r3, r4, r5, r6,
354 LD_SH16(input, 8, l0, l8, l1, l9, l2, l10, l3, l11, l4, l12, l5, l13, l6, l14,
356 TRANSPOSE8x8_SH_SH(l0, l1, l2, l3, l4, l
[all...]
/external/llvm/test/MC/Sparc/
H A Dsparc-coproc.s53 ! CHECK: ld [%l4+%l5], %csr ! encoding: [0xc1,0x8d,0x00,0x15]
56 ld [%l4+%l5], %csr
/external/protobuf/ruby/tests/
H A Dbasic.rb338 l4 = Google::Protobuf::RepeatedField.new(:int32)
339 l4[5] = 42
340 assert l4 == [0, 0, 0, 0, 0, 42]
342 l4 << 100
343 assert l4 == [0, 0, 0, 0, 0, 42, 100]
344 l4 << 101 << 102
345 assert l4 == [0, 0, 0, 0, 0, 42, 100, 101, 102]
386 l4 = l + [new_msg]
387 assert l4.count == 2
389 assert l4[
[all...]
/external/libvpx/libvpx/vpx_dsp/mips/
H A Didct16x16_msa.c294 v8i16 l0, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, l12, l13, l14, l15; local
297 LD_SH16(input, 8, l0, l8, l1, l9, l2, l10, l3, l11, l4, l12, l5, l13, l6, l14,
299 TRANSPOSE8x8_SH_SH(l0, l1, l2, l3, l4, l5, l6, l7, l0, l1, l2, l3, l4, l5, l6,
305 VP9_IADST8x16_1D(l0, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, l12, l13,
314 TRANSPOSE8x8_SH_SH(r0, l1, r12, l3, r6, r14, r10, r2, l0, l1, l2, l3, l4, l5,
316 ST_SH8(l0, l1, l2, l3, l4, l5, l6, l7, output, 16);
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-string-literals.cpp255 const char *l4 = "\x4"; variable
/external/clang/test/Parser/
H A Dcxx-ambig-init-templ.cpp149 int k4 = T2<0, operator>(Y{}, Y{}), operator,(Y{}, Y{})>::val, l4;
/external/google-breakpad/src/common/linux/
H A Dsynth_elf_unittest.cc108 Label l4(table.Add(s2));
116 EXPECT_EQ(l2.Value(), l4.Value());
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dintrapred_sse2.asm673 punpcklbw m0, m0 ; l1 to l4 each repeated 4 times
697 punpcklbw m0, m0 ; l1 to l4 each repeated 4 times
758 punpcklbw m2, m1 ; l1 l2 l3 l4 l5 l6 l7 l8 [word]
H A Dintrapred_ssse3.asm315 movd m0, [leftq] ; l1, l2, l3, l4
317 punpckldq m0, m1 ; l1, l2, l3, l4, tl, t1, t2, t3
318 pshufb m0, [GLOBAL(sh_b32104567)]; l4, l3, l2, l1, tl, t1, t2, t3
/external/v8/benchmarks/
H A Dearley-boyer.js4287 var l4;
4293 (l4 = prev_trees);
4295 while ((l4 instanceof sc_Pair)) {
4297 (sc_l2_100 = (new sc_Pair((sc_append((l4.car), ender_tree)), sc_l2_100)));
4298 (l4 = (l4.cdr));
/external/vixl/test/aarch32/
H A Dtest-assembler-aarch32.cc1813 Literal<uint8_t> l4(42);
1820 __ Ldrb(r5, &l4);
1852 Literal<uint8_t> l4(42);
1876 __ Ldrb(ge, r5, &l4);
2131 Literal<uint8_t> l4(123, RawLiteral::kManuallyPlaced);
2138 __ Ldrb(r5, &l4);
2150 __ Place(&l4);
2163 __ Ldrb(temp, &l4);
/external/libjpeg-turbo/simd/
H A Djsimd_arm64_neon.S96 .macro transpose_8x8 l0, l1, l2, l3, l4, l5, l6, l7, t0, t1, t2, t3
99 trn1 \t2\().8h, \l4\().8h, \l5\().8h
103 trn2 \l5\().8h, \l4\().8h, \l5\().8h
106 trn1 \l4\().4s, \t2\().4s, \t3\().4s
116 trn1 \l0\().2d, \t2\().2d, \l4\().2d
120 trn2 \l4\().2d, \t2\().2d, \l4\().2d
/external/elfutils/tests/
H A Drun-allregs.sh2369 20: %l4 (l4), signed 32 bits
2447 20: %l4 (l4), signed 64 bits
/external/libvpx/libvpx/third_party/libyuv/source/
H A Drow_win.cc5295 ja l4
5349 l4:
5394 jge l4
5441 l4:
5480 jge l4
5541 l4:
5565 jge l4
/external/libyuv/files/source/
H A Drow_win.cc5248 ja l4
5302 l4:
5347 jge l4
5396 l4:
5435 jge l4
5497 l4:
5521 jge l4
/external/webrtc/data/voice_engine/stereo_rtp_files/
H A Dstereo_g729.rtp301 �%��<4`�w��EI��X|����J�Q����J���P�RǗ۪ l4���}�G�<4t�x���I��X3/����=���#\ψ�̽#FG/�����c���ܗp��<4��y���I��X���v��A���ݵ+2]n����V�~��"�+< ��<4��z��%I��XP q]Tؕ�ueR�B9x �LF��qOV@��ċu�!��L2<4��{���I��X����:R� {�2�=�:�@��0�}�5x��V=���<4Ā|�eI��Xh��P��K�}De"�~&7l�h����l �}`ecz>&\7r<4؀}�I��X���Y���
952 [�A��<4k��a�o�I��X�0+�d��C"�^xK ���+�d���L�z�^xG�|<4k��b�p%I��XH�Š�k {+ب�NZvQ���R���a�q4��NVv�L�2<4kЀc�p�I��X#ȏ�A��t��R�O~R��@%�#X�Cq%��R�Of�7vH�c<4k�d�qeI��XrKВ�tV���І�Jt��P�o'tȞYy�����1���<4k�e�rI��X��Q�a��r�Q��z1��Ay�Ѣ|��L�CQuy�tE�g<4l �f�r�I��XrP��%�����y��+rT*s��Q�zgq��rS�a��<4l �g�sEI��Xr�"j2=�Ky�Q��rDsy���)2�� rK���s{��<4l4�h�s�I��Xrk/��q�9Qr�1:�r��GrK����r{gr!�?2��s<4lH�i�t�I��X~�Rz����4�h�R?�~��rORy
/external/webrtc/talk/media/testdata/
H A Dh264-svc-99-640x360.rtpdump58 ��쏾�cDX}` ��Z����|����ά�����_o�II/����� t��V�� .�V�F��.b�.�L\�����p�z�&��U��mR��-)}i��y~v/R�����?��^ Nc�ZO�Wg�qC��ـ��?�c%Sꮷ��f��fZ�Ƞ�r8>����4��e]�+:�K����[/U�.9�0�� g|�QX(LG���a����m���` ������AL�������0�6�K�\7M��� �Jv�.cZ� ��fؐ�l4�(H6��z����:��}&]��@�pI�ׂ�ִ�%�=o��f��i��5��S���io���&�=���f���,��:���l?�q���{�x݄�q����m|�O�K������D��hf�0�~�}Ɲ� hO��˜#�*�>ߌ����e��Me�/��jQ�G�������xo��2����U�����@9 uO�
1780 .��O��%��l�r�a�s�%�.%�,lK)�q�2���k�?�����\� ��'M,�6Xix��[�r𢕳��0�׃��Enk�:�k������m�f�CK};����I_� O�"����v����_�K�l4�Ы�`��*%����1��S��x&�\����D�������cdR��
2816 �q��At˹�A5~�O�n:2����2n������O(�:m�?�(�����`���D�_��K���@]�/?�Q?_}J����T�Э��UWuR@�� ̐c&Y�6���f��f˥�0r���g����g{�Or�nlO�/�!�l4��;�Ƴ���r�ùj����ЎL6b���8j/��'���ph��0i��'��Gaa�n�炏��̫.��~?ŗ�(ׅ������An�j��r���f�-J�`dw��⚊r� �:B���]d[���8���Vn�7vV`(�yxPU���:����o��<O�tŊ���~�*pM��7Qq$ d�7a;`�V������q��YnO�`�����Y�%)g���p�i>���@&#�Ģ��23H��I�����-駶�7 �/�d("�r|�_�� � ��
6947 ��z?x��7��Z��C����a�������k����,^�>�����x{]�a�������}���j���?��^7�����4oO ��H��n�q(>x����.��v�ΰX^� � �]&����v\�L)��:��)F��O��~���-����m$U+F?�Z��o��!}O�����hyb悔��x���:h�KA�G�~�� 孾�hN��K��Z �q�F���쉍zi3�~�@�/`mQ-o��_q��[�c9��A}>��w y��l4�?�����0!��Gר�T^��콎Y��B�<ձ������w���t�g��QX[S��+�4��G��Ap����'������f��fb�@�zrt8>��0�c4���h���JD�,?�@mK�fU��ٻ?8ц�A�. cv�쵧�΍���}A~#C��ϷS�������q=���E�06;�P?��=�?�q���Q9�<n�HUk�#�(�%�Z6���'�ϕ����Ĥ֣K����-�������\�B����֚�g��z�$#��X����H '$o1�^��`ҳ���mx]���>Q��S����nE����]/ԙl��G��\j.��G}����~L����Ҳ��ǯ�m�1��L�{���^��9c���F���g0֠O���B<�s� ������tz��}��ْ'B��WAm�E ��vg���T�f�_ҬG�g���/����K���)����l�-��a-������,3�����?�S�_a-/�G�-�O6�=������4x��_����z�������Z �� �k����Y~'���(��6Z�;)���C����>bYW��'�%���`����E�����\_Aby �`� A.֞�k�`���,����R�6�pGۜ1��'K� B�|��� X��� �f��I�/���,*�����ˍ�?������ ��l��q�����3�v��k�K�R7��W`=��_��?;���������n���z��h� �-u��9��/��K�� 9�g�uaq8��u�[��~��} c��m���>���c_���Ҭf�]*-��`M�����5��P@�v� B���U`__[��x3��OQ,�w�F�����
9585 5C2"u��<͕���O~�f����+�z}��� u~�SW��S�#�Z��ߧ�M]����M/���,1�5*Y��~x� ��ʦU8v5�������g1{\��؟�)�vd�B6�C��Ww ҳ���3 �zu��S�gɞ z���?,k�w�A���.���S�n<*5S��˵7_��������ڕj��O��̬�n�O�C��Ywt��_7�x;�T��)7{���n�[(��h�Xo�C�������#k����������/9���Ÿ��yF��� �C��U�j���w˿Jk��l4�>�\܂=ua�Q��5ڿ8?ZٚK���[ z9�Lz���\�Oݞ��7
11856 �kּ��^�y-�l��P�X+���`�@4�}�>��l ú��Х50��sh�]�<0�-�y�x)�s� �:nަL� �x��C�-�g����A���&d��;��%�ߟ=��'����助�. 7I��{X����mQ��� =����/_*&���=/�,w��'����*�xh�] � ���_`L6�^��������Zh�v _����V(ǂ�Cc����E@��-/cg p��s���=��6m}�{�(�) #�[��3K,�@�4�h�>�!2�c)��B���f��fH��/Dr8>��O��4���rJΠ����8��#x�2��v5@�r�Lyp���t|3k�ZKo�����?J��{ Lq_� �E��� D�½��e�.�=��H���e �A����`Wb!4=��Ә�/�:/�r���,��1���.�Le�<ӡl4&u��|]6C<�N�xGE�߂w�𩄏�/�ZQp����=���v�Amt`"1񔫣@}�
14416 �E�C�*V�`����? ٯ��{S���890�!�@���k?\���9.�0�h.D6d0I���� t����5l� .hZ�݅�s�2N�����רr)�N�_�UT?1�h��A|�ڳ��gFP������� v4X��.-�ƽj7��hfzT�U������G<&_��+���0 � ��~��@h:&CA����-Zt�S_�\^��,�.�h�s��PE��4��o��W �@l4�l>P��kXQ2�@�pS��~�.�+:�T��~� �G�� ��T ��ح�@n�U���f��GA�L�S9��P��9�,�����P D1�!R��������@GAC���۝����`< :����#��ݯX�f6uK(���������5@|N�Cf�.�h�4�u�y�$���+��Ь��9��c*O� ���f��f¦��r���g�^���g;��r�
15589 N,pf/��[�͠����0R6�1�`�u�-3�������Q�~K p�d2�qj�����x+��m�pu���J+Ⱦhr���2�L���t+�ýWv'�����Ʌ%��/���Sd�AڧR|O�~ B."� ����'����)(oV���;�U�bMI�1 �rS�{�[ᠺ�_U{(SV��*��l4��q5��������?����!/勓=�C��2[n�?1�̯���[����Ƭ_�c(�,����TkL|O.�8��%$�fL���eh�Z.F'��90<@�=~�

Completed in 811 milliseconds

12