HomeSort by relevance Sort by last modified time
    Searched defs:s3 (Results 1 - 25 of 224) sorted by null

1 2 3 4 5 6 7 8 9

  /external/v8/test/webkit/fast/regex/
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/
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, "" ) == s2 )
    [all...]
  /external/v8/test/mjsunit/regress/
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);
regress-crbug-3867.js 55 assertArrayEquals(["s1", "s2", "s3"], props({s1: 0, s2: 0, s3: 0}));
56 assertArrayEquals(["s3", "s2", "s1"], props({s3: 0, s2: 0, s1: 0}));
57 assertArrayEquals(["s3", "s1", "s2"], props({s3: 0, s1: 0, s2: 0}));
69 var o1 = {s1: 0, s2: 0, s3: 0}
72 assertArrayEquals(["s1", "s2", "s3", "s0", "s4"], props(o1));
74 var o2 = {s3: 0, s2: 0, s1: 0}
77 assertArrayEquals(["s3", "s2", "s1", "s4", "s0"], props(o2))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/exchange/
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, "" ) == s2 )
    [all...]
  /external/clang/test/CodeGen/
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 }
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 }
sanitize-init-order.cpp 27 PODWithCtorAndDtor s3; variable
  /external/libcxx/test/std/input.output/string.streams/istringstream/istringstream.assign/
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/libcxx/test/std/numerics/numarray/template.slice.array/slice.arr.assign/
slice_array.pass.cpp 52 std::slice_array<int> const & s3 = (s1 = s2); member in class:std
53 assert(&s1 == &s3);
  /external/webrtc/src/system_wrappers/source/
data_log_helpers_unittest.cc 54 std::string s1, s2, s3; local
62 m3.ToString(&s3);
63 ASSERT_EQ(s3, "1,2,3,");
  /external/clang/test/Sema/
arm-layout.c 36 struct s3 { struct
41 check(s3_size, sizeof(struct s3) == 8);
42 check(s3_offset_0, __builtin_offsetof(struct s3, field0) == 0);
43 check(s3_offset_1, __builtin_offsetof(struct s3, field2) == 7);
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];
pragma-pack-and-options-align.c 35 struct s3 { struct
39 extern int a[sizeof(struct s3) == 8 ? 1 : -1];
  /external/fio/lib/
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/v8/test/webkit/
regexp-zero-length-alternatives.js 31 var s3 = "aax"; variable
42 shouldBe('s3.match(re1)', '["aa"]');
49 shouldBe('s3.match(re2)', '["aa"]');
56 shouldBe('s3.match(re3)', '["aa"]');
63 shouldBe('s3.match(re4)', '["aa", "a"]');
70 shouldBe('s3.match(re5)', '["aa", "a"]');
77 shouldBe('s3.match(re6)', '["aa", "a"]');
84 shouldBe('s3.match(re7)', '["aa"]');
91 shouldBe('s3.match(re8)', '["aa"]');
98 shouldBe('s3.match(re9)', '["aa"]')
    [all...]
  /external/clang/test/SemaCXX/
builtin-assume-aligned-tmpl.cpp 76 struct s3 { struct
85 atest5<s3>(); // expected-note {{in instantiation of function template specialization 'atest5<s3>' requested here}}
type-definition-in-specifier.cpp 6 struct S3;
18 struct S3 { int x; } s3; local
  /external/clang/test/SemaTemplate/
self-comparison.cpp 21 struct S3 {
45 S3 s3; s3.foo<1, 1>(); local
  /external/skia/src/opts/
SkBlitRow_opts_SSE4.cpp 31 s3 = _mm_loadu_si128(src4+i+3); local
34 const __m128i ORed = _mm_or_si128(s3, _mm_or_si128(s2, _mm_or_si128(s1, s0)));
39 const __m128i ANDed = _mm_and_si128(s3, _mm_and_si128(s2, _mm_and_si128(s1, s0)));
45 _mm_storeu_si128(dst4+i+3, s3);
52 _mm_storeu_si128(dst4+i+3, SkPMSrcOver_SSE2(s3, _mm_loadu_si128(dst4+i+3)));
  /external/wpa_supplicant_8/src/crypto/
aes-internal-enc.c 25 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
37 s3 = GETU32(pt + 12) ^ rk[3];
93 s3 = TE41(t3) ^ TE42(t0) ^ TE43(t1) ^ TE44(t2) ^ rk[3];
94 PUTU32(ct + 12, s3);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
residu.cpp 208 Word32 s3; local
222 s3 = 0x0000800L;
234 s3 += ((Word32) * (p_coef) * *(p_input3++));
238 s3 += ((Word32) * (p_coef) * *(p_input3++));
244 s3 += (((Word32) * (p_coef)) * *(p_input3));
249 *(p_residual_ptr--) = (Word16)(s3 >> 12);
  /ndk/tests/device/test-stlport_shared-exception/jni/
vtable2.cpp 25 struct S3
27 virtual void s3 ();
30 struct S4 : public S3, virtual public S2
51 void S3::s3 () function in class:S3
93 S3 primary vtable
95 S3 offset to top
96 S3 RTTI
97 S3::s3
    [all...]
  /ndk/tests/device/test-stlport_static-exception/jni/
vtable2.cpp 25 struct S3
27 virtual void s3 ();
30 struct S4 : public S3, virtual public S2
51 void S3::s3 () function in class:S3
93 S3 primary vtable
95 S3 offset to top
96 S3 RTTI
97 S3::s3
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
random.h 44 __u32 s1, s2, s3; member in struct:rnd_state

Completed in 744 milliseconds

1 2 3 4 5 6 7 8 9