/external/selinux/policycoreutils/mcstrans/share/examples/urcsts-via-include/setrans.d/ |
H A D | r.conf | 3 s3=RESTRICTED 4 s3=R E S T R I C T E D 5 s3=R
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-298269.js | 42 var s3 = "string for triggering osr in Cb"; variable 43 for (var i = 0; i < 16; i++) s3 = s3 + s3; 44 Cb(s3);
|
H A D | regress-2529.js | 37 var s3 = makeScript('if (true) 2; else var x = 3;'); 42 assertEquals("try", eval(s3));
|
/external/clang/test/CodeGen/ |
H A D | mms-bitfields.c | 17 struct s3 { struct 20 } s3; variable in typeref:struct:s3 22 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
|
H A D | ms_struct.c | 18 struct s3 { struct 21 } ATTR s3; variable in typeref:struct:s3 23 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
|
H A D | sanitize-init-order.cpp | 27 PODWithCtorAndDtor s3; variable
|
H A D | packed-arrays.c | 20 struct __attribute__((packed)) s3 { struct 33 int align3 = __alignof(struct s3); 43 int align3_x = __alignof(((struct s3*) 0)->x); 52 int align3_x0 = __alignof(((struct s3*) 0)->x[0]); 136 int f3_a(struct s3 *a) { 139 int f3_b(struct s3 *a) { 142 int f3_c(struct s3 *a) { 145 int f3_d(struct s3 *a) {
|
H A D | x86_32-arguments-win32.c | 20 struct s3 { struct 24 struct s3 f3_1(void) { while (1) {} }
|
/external/v8/test/webkit/fast/regex/ |
H A D | overflow.js | 32 var s3 = "&{6}u4a64YfQP{C}u88c4u5772Qu8693{4294967167}u85f2u7f3fs((uf202){4})u5bc6u1947"; variable 33 var regexp3 = new RegExp(s3, ""); 34 shouldBe("regexp3.exec(s3)", 'null');
|
/external/libcxx/test/std/utilities/utility/exchange/ |
H A D | exchange.pass.cpp | 42 std::string s3 = s1; // Mom local 43 assert ( std::exchange ( s3, s2 ) == s1 ); 44 assert ( s3 == s2 ); 45 assert ( std::exchange ( s3, "Hi Mom!" ) == s2 ); 46 assert ( s3 == s1 ); 48 s3 = s2; // Dad 49 assert ( std::exchange ( s3, {} ) == s2 ); 50 assert ( s3.size () == 0 ); 52 s3 = s2; // Dad 53 assert ( std::exchange ( s3, "" ) [all...] |
/external/libcxx/test/std/localization/locales/locale/locale.operators/ |
H A D | compare.pass.cpp | 25 std::string s3("BaaaaaA"); 26 assert(l(s3, s2)); 30 std::wstring s3(L"BaaaaaA"); 31 assert(l(s3, s2));
|
/external/libcxx/test/std/localization/locale.categories/category.collate/locale.collate.byname/ |
H A D | compare.pass.cpp | 41 std::string s3("BaaaaaA"); 43 s3.data(), s3.data() + s3.size()) == 1); 48 std::wstring s3(L"BaaaaaA"); 50 s3.data(), s3.data() + s3.size()) == 1); 58 std::string s3("BaaaaaA"); 60 s3 [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/ |
H A D | test_cert_verification.py | 31 import boto.s3 namespace 35 s3 = True variable in class:S3CertVerificationTest 36 regions = boto.s3.regions()
|
/external/llvm/test/MC/ARM/ |
H A D | pr22395.s | 15 vadd.f32 s1, s2, s3 16 @ CHECK: vadd.f32 s1, s2, s3 20 vadd.f32 s1, s2, s3 21 @ CHECK: vadd.f32 s1, s2, s3 25 vadd.f32 s1, s2, s3 26 @ CHECK: vadd.f32 s1, s2, s3 30 vadd.f32 s1, s2, s3 31 @ CHECK: vadd.f32 s1, s2, s3 35 vadd.f32 s1, s2, s3 36 @ CHECK: vadd.f32 s1, s2, s3 [all...] |
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, s [all...] |
/external/clang/test/Sema/ |
H A D | pragma-pack-5.c | 31 struct s3 { struct 37 extern int check[sizeof(struct s3) == 8 ? 1 : -1]; 38 extern int check[offsetof(struct s3, f4) == 6 ? 1 : -1];
|
H A D | warn-strlcpycat-size.c | 10 char * s3; variable 23 strlcpy(s1, s3, strlen(s3)+1); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}} 24 strlcat(s2, s3, sizeof(s3)); // expected-warning {{size argument in 'strlcat' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
|
/external/testng/src/test/java/test/ |
H A D | FileStringBufferTest.java | 13 String s3 = s + s + s; 15 fsb.append(s3); 16 // Assert.assertEquals(s3, fsb.toString()); 22 String s3 = s + s + s; 27 // Assert.assertEquals(s3, fsb.toString());
|
/external/llvm/test/MC/AMDGPU/ |
H A D | sop2.s | 4 // CHECK: s_add_u32 s1, s2, s3 ; encoding: [0x02,0x03,0x01,0x80] 5 s_add_u32 s1, s2, s3 7 // CHECK: s_sub_u32 s1, s2, s3 ; encoding: [0x02,0x03,0x81,0x80] 8 s_sub_u32 s1, s2, s3 10 // CHECK: s_add_i32 s1, s2, s3 ; encoding: [0x02,0x03,0x01,0x81] 11 s_add_i32 s1, s2, s3 13 // CHECK: s_sub_i32 s1, s2, s3 ; encoding: [0x02,0x03,0x81,0x81] 14 s_sub_i32 s1, s2, s3 16 // CHECK: s_addc_u32 s1, s2, s3 ; encoding: [0x02,0x03,0x01,0x82] 17 s_addc_u32 s1, s2, s3 [all...] |
/external/libcxx/test/std/input.output/string.streams/istringstream/istringstream.assign/ |
H A D | move.pass.cpp | 45 std::istringstream s3; local 46 s3 = std::move(s2); 47 s3 >> s; 50 s1 = std::move(s3); 76 std::wistringstream s3; local 77 s3 = std::move(s2); 78 s3 >> s; 81 s1 = std::move(s3);
|
/external/strace/tests/ |
H A D | getrandom.test | 9 run_strace -e getrandom -xx -s3 -a32 $args > "$OUT"
|
/external/fio/lib/ |
H A D | rand.h | 7 unsigned int s1, s2, s3; member in struct:frand_state 15 dst->s3 = src->s3; 24 state->s3 = TAUSWORTHE(state->s3, 3, 11, 4294967280UL, 17); 26 return (state->s1 ^ state->s2 ^ state->s3);
|
/external/clang/test/Analysis/ |
H A D | array-struct.c | 125 struct s3 { struct 129 static struct s3 opt; 133 struct s3 my_opt = opt; 146 struct s3 p[1]; 152 void f16(struct s3 *p) { 153 struct s3 a = *((struct s3*) ((char*) &p[0])); // expected-warning{{Casting a non-structure type to a structure type and accessing a field can lead to memory access errors or data corruption}}
|
/external/boringssl/src/ssl/ |
H A D | s3_enc.c | 232 if (ssl->s3->tmp.key_block != NULL) { 233 OPENSSL_cleanse(ssl->s3->tmp.key_block, ssl->s3->tmp.key_block_length); 234 OPENSSL_free(ssl->s3->tmp.key_block); 235 ssl->s3->tmp.key_block = NULL; 237 ssl->s3->tmp.key_block_length = 0; 243 ssl->s3->handshake_buffer = BUF_MEM_new(); 244 return ssl->s3->handshake_buffer != NULL; 262 if (!init_digest_with_data(&ssl->s3->handshake_hash, 264 ssl->s3 [all...] |
/external/libcxx/test/std/re/re.regex/re.regex.construct/ |
H A D | iter_iter_flg.pass.cpp | 37 std::string s3("\\(a\\([bc]\\)\\)"); 42 test(F(s3.begin()), F(s3.end()), std::regex_constants::basic, 2); 47 test(F(s3.begin()), F(s3.end()), std::regex_constants::extended, 0); 52 test(F(s3.begin()), F(s3.end()), std::regex_constants::ECMAScript, 0); 57 test(F(s3.begin()), F(s3.end()), std::regex_constants::awk, 0); 62 test(F(s3 [all...] |