Searched defs:x8 (Results 1 - 25 of 33) sorted by relevance

12

/external/clang/test/Frontend/
H A Dbackend-diagnostic.c28 int x5, int x6, int x7, int x8, int x9) {
30 "r" (x4),"r" (x5),"r" (x6),"r" (x7),"r" (x8),"r" (x9));
27 inlineAsmError(int x0, int x1, int x2, int x3, int x4, int x5, int x6, int x7, int x8, int x9) argument
/external/clang/test/SemaCXX/
H A Dattr-selectany.cpp36 __declspec(selectany) auto x8 = Internal(); // expected-error {{'selectany' can only be applied to data items with external linkage}} variable
H A Dnew-delete.cpp196 void f(X8 *x8) { argument
197 delete x8; // expected-error {{member 'operator delete' found in multiple base classes of different types}}
/external/clang/test/CodeGen/
H A Dattr-mode-enums.c34 enum __attribute__((mode(QI))) { A8, B8 } x8 = B8; local
44 return x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8;
H A Doverride-layout.c132 union X8 x8; local
134 x8.y = sizeof(union X8);
135 x8.x.x = x8.y;
/external/clang/test/ASTMerge/Inputs/
H A Dstruct1.c39 struct S8 *x8; variable in typeref:struct:S8
H A Dstruct2.c36 struct S8 { int i; float f; } *x8; variable in typeref:struct:S8
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-alg-fst.c42 word8 x8[MAXKC][4]; member in union:__anon8898
45 #define tk xtk.x8
145 word8 x8[16]; member in union:__anon8899
148 #define a xa.x8
149 #define b xb.x8
151 word8 x8[4][4]; member in union:__anon8900
154 #define temp xtemp.x8
310 word8 x8[16]; member in union:__anon8901
313 #define a xa.x8
314 #define b xb.x8
316 word8 x8[4][4]; member in union:__anon8902
[all...]
/external/clang/test/Layout/
H A Dms-vtordisp-local.cpp196 int x8[sizeof(HasVtorDisp5)]; member in struct:Container3
/external/lzma/Asm/x86/
H A D7zAsm.asm74 x8 equ r8d define
/external/flac/libFLAC/
H A Dbitreader.c481 FLAC__uint32 x8, x32 = 0; local
488 if(!FLAC__bitreader_read_raw_uint32(br, &x8, 8))
490 x32 |= (x8 << 8);
492 if(!FLAC__bitreader_read_raw_uint32(br, &x8, 8))
494 x32 |= (x8 << 16);
496 if(!FLAC__bitreader_read_raw_uint32(br, &x8, 8))
498 x32 |= (x8 << 24);
/external/clang/test/FixIt/
H A Dfixit.cpp82 int x8 <= 0; // expected-error {{invalid '<=' at end of declaration; did you mean '='?}} member in namespace:rdar8488464
107 int x8 <= 0; // expected-error {{invalid '<=' at end of declaration; did you mean '='?}} local
108 (void)x8;
129 if (int x8 <= 0) { (void)x8; } // expected-error {{invalid '<=' at end of declaration; did you mean '='?}}
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c358 tran_high_t x8 = input[7]; local
376 s8 = x8 * cospi_17_64 + x9 * cospi_15_64;
377 s9 = x8 * cospi_15_64 - x9 * cospi_17_64;
393 x8 = fdct_round_shift(s0 - s8);
411 s8 = x8 * cospi_4_64 + x9 * cospi_28_64;
412 s9 = x8 * cospi_28_64 - x9 * cospi_4_64;
428 x8 = fdct_round_shift(s8 + s12);
446 s8 = x8;
463 x8 = s8 + s10;
492 output[1] = (tran_low_t)-x8;
[all...]
/external/libvpx/libvpx/vpx_dsp/
H A Dinv_txfm.c400 tran_high_t x8 = input[7]; local
409 if (!(x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7 | x8 | x9 | x10 | x11 | x12 |
424 s8 = x8 * cospi_17_64 + x9 * cospi_15_64;
425 s9 = x8 * cospi_15_64 - x9 * cospi_17_64;
441 x8 = WRAPLOW(dct_const_round_shift(s0 - s8));
459 s8 = x8 * cospi_4_64 + x9 * cospi_28_64;
460 s9 = x8 * cospi_28_64 - x9 * cospi_4_64;
476 x8 = WRAPLOW(dct_const_round_shift(s8 + s12));
494 s8 = x8;
511 x8
1719 tran_low_t x8 = input[7]; local
[all...]
/external/libvpx/libvpx/vpx_dsp/mips/
H A Ditrans16_dspr2.c1071 int x8 = input[7]; local
1080 if (!(x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7 | x8 | x9 | x10 | x11 | x12 |
1097 s8 = x8 * cospi_17_64 + x9 * cospi_15_64;
1098 s9 = x8 * cospi_15_64 - x9 * cospi_17_64;
1114 x8 = dct_const_round_shift(s0 - s8);
1132 s8 = x8 * cospi_4_64 + x9 * cospi_28_64;
1133 s9 = x8 * cospi_28_64 - x9 * cospi_4_64;
1149 x8 = dct_const_round_shift(s8 + s12);
1167 s8 = x8;
1184 x8
[all...]
/external/clang/test/Analysis/
H A Ddead-stores.c562 int x7 = 0, x8 = getInt(); //expected-warning {{Value stored to 'x8' during its initialization is never read}} // expected-warning{{unused variable 'x8'}} // expected-warning{{unused variable 'x7'}} local
/external/clang/test/Parser/
H A DMicrosoftExtensions.cpp229 _int64 x8 = _int64(0); variable
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dloopfilter_sse2.c171 // Transpose 8x8
201 // Transpose 8x4 to 4x8
330 filt = _mm_andnot_si128(_mm_srai_epi16(_mm_unpacklo_epi8(zero, hev), 0x8),
1519 __m128i x8, x9, x10, x11, x12, x13, x14, x15; local
1539 x8 = _mm_loadl_epi64((__m128i *)in1); // 2
1541 x8 = _mm_unpacklo_epi8(x8, x9); // 5
1551 x12 = _mm_unpacklo_epi16(x8, x9); // 11
1571 x12 = _mm_unpackhi_epi16(x8, x9);
1691 // Transpose 8x8
[all...]
/external/boringssl/src/third_party/fiat/
H A Dcurve25519.c198 { const uint64_t x8 = in1[3]; local
205 { uint64_t x19; uint8_t/*bool*/ x20 = subborrow_u51(x17, x8, 0x7ffffffffffff, &x19);
344 { const uint64_t x8 = in1[3]; local
356 { uint64_t x17 = (x15 + x8);
464 { const uint64_t x8 = in1[3]; local
473 { uint128_t x14 = ((((uint128_t)x2 * x2) + ((uint128_t)x13 * x4)) + ((uint128_t)x11 * x8));
474 { uint128_t x15 = ((((uint128_t)x9 * x4) + ((uint128_t)x13 * x6)) + ((uint128_t)x8 * (x8 * 0x13)));
475 { uint128_t x16 = ((((uint128_t)x9 * x6) + ((uint128_t)x4 * x4)) + ((uint128_t)x13 * x8));
476 { uint128_t x17 = ((((uint128_t)x9 * x8)
684 { const uint32_t x8 = in1[3]; local
885 { const uint32_t x8 = in1[3]; local
1093 { const uint32_t x8 = in1[3]; local
[all...]
H A Dp256.c110 { const uint64_t x8 = in1[3]; local
121 { uint64_t x26; uint8_t x27 = addcarryx_u64(x24, x8, x14, &x26);
144 uint64_t x8; uint8_t x9 = subborrow_u64(0x0, 0x0, x2, &x8); local
150 uint64_t x22; uint8_t x23 = addcarryx_u64(0x0, x8, x20, &x22);
163 const uint64_t x8 = in1[3]; local
243 uint64_t x230; uint64_t x229 = mulx_u64(x8, x11, &x230);
244 uint64_t x233; uint64_t x232 = mulx_u64(x8, x13, &x233);
245 uint64_t x236; uint64_t x235 = mulx_u64(x8, x15, &x236);
246 uint64_t x239; uint64_t x238 = mulx_u64(x8, x1
285 const uint64_t x8 = in1[3]; local
[all...]
/external/capstone/suite/MC/AArch64/
H A Dbasic-a64-instructions.s.cs121 0xe8,0xcb,0x10,0x91 = add x8, sp, #1074
169 0x28,0xfd,0x8a,0x8b = add x8, x9, x10, asr #63
195 0x28,0xfd,0x8a,0xab = adds x8, x9, x10, asr #63
221 0x28,0xfd,0x8a,0xcb = sub x8, x9, x10, asr #63
247 0x28,0xfd,0x8a,0xeb = subs x8, x9, x10, asr #63
264 0x1f,0x3d,0x09,0xab = cmn x8, x9, lsl #15
288 0x1f,0x3d,0x09,0xeb = cmp x8, x9, lsl #15
507 0x07,0x31,0x9f,0x9a = csel x7, x8, xzr, lo external variable declarations
515 0x07,0x35,0x9f,0x9a = csinc x7, x8, xzr, lo external variable declarations
523 0x07,0x31,0x9f,0xda = csinv x7, x8, xz external variable declarations
531 0x07,0x35,0x9f,0xda = csneg x7, x8, xzr, lo external variable declarations
[all...]
/external/dagger2/lib/
H A Dauto-factory-1.0-20150915.183854-35.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/factory/ ...
/external/guice/extensions/persist/lib/
H A Dhibernate-annotations.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/annotationfactory/ org/hibernate/annotations/ org/ ...
/external/mockito/lib/
H A Dbyte-buddy-1.7.9.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/net. ...
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 2830 milliseconds

12