Searched defs:x13 (Results 1 - 14 of 14) sorted by relevance

/external/clang/test/CodeGen/
H A Doverride-layout.c153 struct X13 x13; local
154 x13.x = sizeof(struct X13);
/external/chromium_org/third_party/boringssl/src/crypto/chacha/
H A Dchacha_vec.c192 x9, x10, x11, x12, x13, x14, x15; local
217 x12 = counter+BPI*iters+(BPI-1); x13 = 0;
232 QROUND_WORDS( x1, x5, x9,x13)
237 QROUND_WORDS( x2, x7, x8,x13)
270 op[13] = REVW_BE(REVW_BE(ip[13]) ^ (x13));
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans16_dspr2.c930 int x13 = input[12]; local
935 | x9 | x10 | x11 | x12 | x13 | x14 | x15)) {
956 s12 = x12 * cospi_25_64 + x13 * cospi_7_64;
957 s13 = x12 * cospi_7_64 - x13 * cospi_25_64;
974 x13 = dct_const_round_shift(s5 - s13);
991 s12 = - x12 * cospi_28_64 + x13 * cospi_4_64;
992 s13 = x12 * cospi_4_64 + x13 * cospi_28_64;
1009 x13 = dct_const_round_shift(s9 - s13);
1026 s12 = x12 * cospi_8_64 + x13 * cospi_24_64;
1027 s13 = x12 * cospi_24_64 - x13 * cospi_8_6
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_dct.c855 tran_high_t x13 = input[12]; local
872 s12 = x12 * cospi_25_64 + x13 * cospi_7_64;
873 s13 = x12 * cospi_7_64 - x13 * cospi_25_64;
890 x13 = fdct_round_shift(s5 - s13);
907 s12 = - x12 * cospi_28_64 + x13 * cospi_4_64;
908 s13 = x12 * cospi_4_64 + x13 * cospi_28_64;
925 x13 = fdct_round_shift(s9 - s13);
942 s12 = x12 * cospi_8_64 + x13 * cospi_24_64;
943 s13 = x12 * cospi_24_64 - x13 * cospi_8_64;
960 x13
[all...]
/external/clang/test/FixIt/
H A Dfixit.cpp87 int x13 |= 0; // expected-error {{invalid '|=' at end of declaration; did you mean '='?}} member in namespace:rdar8488464
117 int x13 |= 0; // expected-error {{invalid '|=' at end of declaration; did you mean '='?}} local
118 (void)x13;
134 if (int x13 |= 0) { (void)x13; } // expected-error {{invalid '|=' at end of declaration; did you mean '='?}}
/external/libvpx/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans16_dspr2.c930 int x13 = input[12]; local
935 | x9 | x10 | x11 | x12 | x13 | x14 | x15)) {
956 s12 = x12 * cospi_25_64 + x13 * cospi_7_64;
957 s13 = x12 * cospi_7_64 - x13 * cospi_25_64;
974 x13 = dct_const_round_shift(s5 - s13);
991 s12 = - x12 * cospi_28_64 + x13 * cospi_4_64;
992 s13 = x12 * cospi_4_64 + x13 * cospi_28_64;
1009 x13 = dct_const_round_shift(s9 - s13);
1026 s12 = x12 * cospi_8_64 + x13 * cospi_24_64;
1027 s13 = x12 * cospi_24_64 - x13 * cospi_8_6
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_idct.c654 int x13 = input[12]; local
659 | x9 | x10 | x11 | x12 | x13 | x14 | x15)) {
680 s12 = x12 * cospi_25_64 + x13 * cospi_7_64;
681 s13 = x12 * cospi_7_64 - x13 * cospi_25_64;
698 x13 = dct_const_round_shift(s5 - s13);
715 s12 = - x12 * cospi_28_64 + x13 * cospi_4_64;
716 s13 = x12 * cospi_4_64 + x13 * cospi_28_64;
733 x13 = dct_const_round_shift(s9 - s13);
750 s12 = x12 * cospi_8_64 + x13 * cospi_24_64;
751 s13 = x12 * cospi_24_64 - x13 * cospi_8_6
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c814 int x13 = input[12]; local
831 s12 = x12 * cospi_25_64 + x13 * cospi_7_64;
832 s13 = x12 * cospi_7_64 - x13 * cospi_25_64;
849 x13 = fdct_round_shift(s5 - s13);
866 s12 = - x12 * cospi_28_64 + x13 * cospi_4_64;
867 s13 = x12 * cospi_4_64 + x13 * cospi_28_64;
884 x13 = fdct_round_shift(s9 - s13);
901 s12 = x12 * cospi_8_64 + x13 * cospi_24_64;
902 s13 = x12 * cospi_24_64 - x13 * cospi_8_64;
919 x13
[all...]
/external/opencv/cv/src/
H A Dcvcontourtree.cpp599 double x13, y13, x12, y12, l_base, nx, ny, qq; local
602 x13 = t3.x - t1.x;
606 qq = x13 * x13 + y13 * y13;
611 ny = -x13 / l_base;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_idct.c690 tran_high_t x13 = input[12]; local
695 | x9 | x10 | x11 | x12 | x13 | x14 | x15)) {
716 s12 = x12 * cospi_25_64 + x13 * cospi_7_64;
717 s13 = x12 * cospi_7_64 - x13 * cospi_25_64;
734 x13 = dct_const_round_shift(s5 - s13);
751 s12 = - x12 * cospi_28_64 + x13 * cospi_4_64;
752 s13 = x12 * cospi_4_64 + x13 * cospi_28_64;
769 x13 = dct_const_round_shift(s9 - s13);
786 s12 = x12 * cospi_8_64 + x13 * cospi_24_64;
787 s13 = x12 * cospi_24_64 - x13 * cospi_8_6
2109 tran_high_t x13 = input[12]; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
H A Dvp9_loopfilter_intrin_sse2.c1332 __m128i x8, x9, x10, x11, x12, x13, x14, x15; local
1346 x13 = _mm_loadl_epi64((__m128i *)(in1 + 5*in_p));
1359 x10 = _mm_unpacklo_epi8(x12, x13);
1365 x13 = _mm_unpacklo_epi16(x10, x11);
1369 x14 = _mm_unpacklo_epi32(x12, x13);
1370 x15 = _mm_unpackhi_epi32(x12, x13);
1381 x13 = _mm_unpackhi_epi16(x10, x11);
1385 x14 = _mm_unpacklo_epi32(x12, x13);
1386 x15 = _mm_unpackhi_epi32(x12, x13);
/external/libvpx/libvpx/vp9/common/x86/
H A Dvp9_loopfilter_intrin_sse2.c1470 __m128i x8, x9, x10, x11, x12, x13, x14, x15; local
1484 x13 = _mm_loadl_epi64((__m128i *)(in1 + 5*in_p));
1497 x10 = _mm_unpacklo_epi8(x12, x13);
1503 x13 = _mm_unpacklo_epi16(x10, x11);
1507 x14 = _mm_unpacklo_epi32(x12, x13);
1508 x15 = _mm_unpackhi_epi32(x12, x13);
1519 x13 = _mm_unpackhi_epi16(x10, x11);
1523 x14 = _mm_unpacklo_epi32(x12, x13);
1524 x15 = _mm_unpackhi_epi32(x12, x13);
/external/qemu-pc-bios/bochs/bios/
H A Drombios.c5995 write_byte(DS,SI+0x00,0x13);
8071 int #0x13 ;; read sector local
8780 SET_INT_VECTOR(0x13, #0xF000, #int13_handler)
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...

Completed in 508 milliseconds