/external/llvm/test/MC/AMDGPU/ |
H A D | smrd-err.s | 4 s_load_dwordx4 s[100:103], s[2:3], s4 6 // SI: s_load_dwordx4 s[100:103], s[2:3], s4 9 s_load_dwordx8 s[96:103], s[2:3], s4 11 // SI: s_load_dwordx8 s[96:103], s[2:3], s4 13 s_load_dwordx16 s[88:103], s[2:3], s4 15 // SI: s_load_dwordx16 s[88:103], s[2:3], s4
|
H A D | out-of-range-registers.s | 25 s_load_dwordx4 s[102:105], s[2:3], s4 28 s_load_dwordx4 s[104:108], s[2:3], s4 31 s_load_dwordx4 s[108:112], s[2:3], s4 34 s_load_dwordx4 s[1:4], s[2:3], s4 37 s_load_dwordx4 s[1:4], s[2:3], s4 40 s_load_dwordx8 s[104:111], s[2:3], s4 43 s_load_dwordx8 s[100:107], s[2:3], s4 46 s_load_dwordx8 s[108:115], s[2:3], s4 49 s_load_dwordx16 s[92:107], s[2:3], s4 52 s_load_dwordx16 s[96:111], s[2:3], s4 [all...] |
H A D | smrd.s | 28 s_load_dword s1, s[2:3], s4 29 // GCN: s_load_dword s1, s[2:3], s4 ; encoding: [0x04,0x82,0x00,0xc0] 34 s_load_dwordx2 s[2:3], s[2:3], s4 35 // GCN: s_load_dwordx2 s[2:3], s[2:3], s4 ; encoding: [0x04,0x02,0x41,0xc0] 40 s_load_dwordx4 s[4:7], s[2:3], s4 41 // GCN: s_load_dwordx4 s[4:7], s[2:3], s4 ; encoding: [0x04,0x02,0x82,0xc0] 43 s_load_dwordx4 s[100:103], s[2:3], s4 44 // GCN: s_load_dwordx4 s[100:103], s[2:3], s4 ; encoding: [0x04,0x02,0xb2,0xc0] 49 s_load_dwordx8 s[8:15], s[2:3], s4 50 // GCN: s_load_dwordx8 s[8:15], s[2:3], s4 ; encodin [all...] |
H A D | sop2.s | 40 // CHECK: s_and_b32 s2, s4, s6 ; encoding: [0x04,0x06,0x02,0x87] 41 s_and_b32 s2, s4, s6 46 // CHECK: s_or_b32 s2, s4, s6 ; encoding: [0x04,0x06,0x02,0x88] 47 s_or_b32 s2, s4, s6 52 // CHECK: s_xor_b32 s2, s4, s6 ; encoding: [0x04,0x06,0x02,0x89] 53 s_xor_b32 s2, s4, s6 58 // CHECK: s_andn2_b32 s2, s4, s6 ; encoding: [0x04,0x06,0x02,0x8a] 59 s_andn2_b32 s2, s4, s6 64 // CHECK: s_orn2_b32 s2, s4, s6 ; encoding: [0x04,0x06,0x02,0x8b] 65 s_orn2_b32 s2, s4, s [all...] |
/external/clang/test/Sema/ |
H A D | pragma-pack-5.c | 40 struct s4 { struct 45 extern int check[sizeof(struct s4) == 4 ? 1 : -1]; 46 extern int check[offsetof(struct s4, f3) == 2 ? 1 : -1];
|
H A D | arm-layout.c | 45 struct s4 { struct 49 check(s4_size, sizeof(struct s4) == 4); 50 check(s4_align, __alignof(struct s4) == 4); 52 check(s4_size, sizeof(struct s4) == 1); 53 check(s4_align, __alignof(struct s4) == 1);
|
H A D | no-documentation-warn-tagdecl-specifier.c | 22 /** @return s4 Test 4 */ 23 struct s4* f4(void); 24 struct s4 { int is; }; struct 43 struct s4 *f8(struct s8 *p);
|
H A D | pragma-align-mac68k.c | 41 struct s4 { struct 45 extern int a4_0[offsetof(struct s4, f0) == 0 ? 1 : -1]; 46 extern int a4_1[offsetof(struct s4, f1) == 1 ? 1 : -1]; 47 extern int a4_2[sizeof(struct s4) == 2 ? 1 : -1]; 48 extern int a4_3[__alignof(struct s4) == 2 ? 1 : -1];
|
H A D | pragma-pack-and-options-align.c | 43 struct s4 { struct 49 extern int a[sizeof(struct s4) == 8 ? 1 : -1];
|
/external/libcxx/test/std/re/re.regex/re.regex.assign/ |
H A D | assign_iter_iter_flag.pass.cpp | 28 std::string s4("(a([bc]))"); 31 r2.assign(I(s4.begin()), I(s4.end())); 35 r2.assign(I(s4.begin()), I(s4.end()), std::regex::extended); 39 r2.assign(F(s4.begin()), F(s4.end())); 43 r2.assign(F(s4.begin()), F(s4.end()), std::regex::extended);
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-2529.js | 38 var s4 = makeScript('if (true) 2; else 3;'); 43 assertEquals("try", eval(s4));
|
/external/clang/test/SemaCXX/ |
H A D | elaborated-type-specifier.cpp | 22 void test_elab2(struct S4 *s4); // expected-note{{'NS::S4' declared here}} 25 void X::test_elab2(S4 *s4) { } // expected-note{{passing argument to parameter 's4' here}} argument 29 struct S4 *s4 = 0; local 30 x.test_elab2(s4); // expected-error{{cannot initialize a parameter of type 'NS::S4 *' with an lvalue of type 'struct S4 *'}} 38 S4 *s4; // expected-error{{unknown type name 'S4'; did you mean 'NS::S4'?}} local
|
/external/v8/test/mjsunit/es6/ |
H A D | classes-subclass-arrays.js | 41 let s4 = new Stack(1, 2, 3); 42 assertSame(Stack.prototype, s4.__proto__); 43 assertTrue(Array.isArray(s4)); 44 assertSame(3, s4.length); 45 assertSame(1, s4[0]); 46 assertSame(2, s4[1]); 47 assertSame(3, s4[2]); 113 let s4 = new Stack(1, 2, 3, 4, 5); 114 assertSame(Stack.prototype, s4.__proto__); 115 assertTrue(Array.isArray(s4)); [all...] |
H A D | unicode-escapes.js | 34 var s4 = "foob\u{0000000061}r"; variable 35 assertEquals(s4, "foobar");
|
/external/clang/test/CodeGen/ |
H A D | x86_32-arguments-win32.c | 27 struct s4 { struct 31 struct s4 f4_1(void) { while (1) {} }
|
/external/libcxx/test/std/re/re.regex/re.regex.construct/ |
H A D | iter_iter_flg.pass.cpp | 38 std::string s4("(a([bc]))"); 43 test(F(s4.begin()), F(s4.end()), std::regex_constants::basic, 0); 48 test(F(s4.begin()), F(s4.end()), std::regex_constants::extended, 2); 53 test(F(s4.begin()), F(s4.end()), std::regex_constants::ECMAScript, 2); 58 test(F(s4.begin()), F(s4.end()), std::regex_constants::awk, 2); 63 test(F(s4 [all...] |
H A D | iter_iter.pass.cpp | 37 std::string s4("(a([bc]))"); 42 test(F(s4.begin()), F(s4.end()), 2);
|
/external/skia/src/core/ |
H A D | SkXfermode4f.cpp | 159 const Sk4f s4 = Sk4f::Load(src->fVec); local 164 const Sk4f& s4_255 = s4 * Sk4f(255); 185 Sk4f r0 = lerp(s4, load_dst<D>(dst[0]), Sk4f(aa4[0])); 186 Sk4f r1 = lerp(s4, load_dst<D>(dst[1]), Sk4f(aa4[1])); 187 Sk4f r2 = lerp(s4, load_dst<D>(dst[2]), Sk4f(aa4[2])); 188 Sk4f r3 = lerp(s4, load_dst<D>(dst[3]), Sk4f(aa4[3])); 203 dst[i] = store_dst<D>(lerp(s4, d4, a)); 206 sk_memset32(dst, store_dst<D>(s4), count); 235 Sk4f s4 = Sk4f::Load(src[i].fVec); local 238 s4 245 Sk4f s4 = Sk4f::Load(src[i].fVec); local 255 const Sk4f s4 = Sk4f::Load(src->fVec); local 298 Sk4f s4 = Sk4f::Load(src->fVec); local 389 const Sk4f s4 = Sk4f::Load(src->fVec); local 421 Sk4f s4 = Sk4f::Load(src[i].fVec); local 429 const Sk4f s4 = Sk4f::Load(src->fVec); local 451 Sk4f s4 = Sk4f::Load(src[i].fVec); local [all...] |
H A D | SkPM4fPriv.h | 31 static inline Sk4f srgb_to_linear(const Sk4f& s4) { argument 32 return set_alpha(s4 * s4, get_alpha(s4));
|
/external/clang/test/Analysis/ |
H A D | malloc-overflow.c | 22 struct s4 struct 27 void * f4(struct s4 *s) 32 void * f5(struct s4 *s) 34 struct s4 s2 = *s;
|
/external/selinux/policycoreutils/mcstrans/share/examples/pipes/ |
H A D | setrans.conf | 15 s4:c200.c511=Secret 16 s4:c200.c511=S
|
/external/llvm/test/MC/ARM/ |
H A D | invalid-fp-armv8.s | 10 vsel.f32 s3, s4, s6 12 vselne.f32 s3, s4, s6 14 vselmi.f32 s3, s4, s6 16 vselpl.f32 s3, s4, s6 18 vselvc.f32 s3, s4, s6 20 vselcs.f32 s3, s4, s6 22 vselcc.f32 s3, s4, s6 24 vselhs.f32 s3, s4, s6 26 vsello.f32 s3, s4, s6 28 vselhi.f32 s3, s4, s [all...] |
H A D | fconst.s | 4 fconsts s4, #0x0 5 fconsts s4, #0x70 14 @ CHECK: vmov.f32 s4, #2.000000e+00 @ encoding: [0x00,0x2a,0xb0,0xee] 15 @ CHECK: vmov.f32 s4, #1.000000e+00 @ encoding: [0x00,0x2a,0xb7,0xee]
|
H A D | vfp4.s | 13 @ ARM: vfma.f32 s2, s4, s0 @ encoding: [0x00,0x1a,0xa2,0xee] 14 @ THUMB: vfma.f32 s2, s4, s0 @ encoding: [0xa2,0xee,0x00,0x1a] 15 @ THUMB_V7EM: vfma.f32 s2, s4, s0 @ encoding: [0xa2,0xee,0x00,0x1a] 16 vfma.f32 s2, s4, s0 36 @ ARM: vfnma.f32 s2, s4, s0 @ encoding: [0x40,0x1a,0x92,0xee] 37 @ THUMB: vfnma.f32 s2, s4, s0 @ encoding: [0x92,0xee,0x40,0x1a] 38 @ THUMB_V7EM: vfnma.f32 s2, s4, s0 @ encoding: [0x92,0xee,0x40,0x1a] 39 vfnma.f32 s2, s4, s0 47 @ ARM: vfms.f32 s2, s4, s0 @ encoding: [0x40,0x1a,0xa2,0xee] 48 @ THUMB: vfms.f32 s2, s4, s [all...] |
/external/clang/test/SemaTemplate/ |
H A D | self-comparison.cpp | 46 S4<1> s4; s4.foo<1>(); local
|