Home
last modified time | relevance | path

Searched refs:S3 (Results 1 – 25 of 75) sorted by relevance

123

/external/llvm/unittests/ADT/
DImmutableSetTest.cpp65 ImmutableSet<int> S3 = f.add(S, 2); in TEST_F() local
67 EXPECT_FALSE(S3.isEmpty()); in TEST_F()
68 EXPECT_FALSE(S == S3); in TEST_F()
69 EXPECT_TRUE(S != S3); in TEST_F()
71 EXPECT_TRUE(S3.contains(2)); in TEST_F()
73 EXPECT_FALSE(S2 == S3); in TEST_F()
74 EXPECT_TRUE(S2 != S3); in TEST_F()
76 EXPECT_FALSE(S3.contains(3)); in TEST_F()
84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43); in TEST_F() local
89 EXPECT_FALSE(S3.isEmpty()); in TEST_F()
[all …]
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
Dp2.cpp29 struct S3 { struct
30 S3() = default;
31 S3(const S3&) = default;
32 S3(S3&&) = default;
33 constexpr S3(int n) : n(n) {} in S3() argument
36 constexpr S3 s3a = S3(0); argument
37 constexpr S3 s3b = s3a;
38 constexpr S3 s3c = S3();
39 constexpr S3 s3d; // expected-error {{default initialization of an object of const type 'const S3' …
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
Dsema.cpp172 struct S3 { struct
173 virtual ~S3() throw();
174 S3() throw();
175 explicit S3(int);
176 S3(const S2&);
181 P(dynamic_cast<S3&>(f2<T&>())); in late2()
184 void operator +(const S1&, const S3&);
187 late<S3, false>(); in tlate()
188 late2<S3>(); in tlate()
/external/clang/test/SemaCXX/
Dwarn-unused-variables.cpp115 struct S3 { struct
118 S3 makeS3();
119 void testS3(S3 a) { in testS3()
120 S3 x = makeS3(); // expected-warning {{unused variable 'x'}} in testS3()
121 S3 y; in testS3()
122 S3 z = a; // expected-warning {{unused variable 'z'}} in testS3()
Dptrtomember.cpp20 struct S3 { struct
24 void f3(S3* p, void (S3::*m)()) { in f3()
Dnamespace.cpp26 namespace S3 { namespace
39 namespace S3 { namespace
51 namespace S3 { namespace
Dwarn-reorder-ctor-initialization.cpp92 struct S3 { }; struct
94 struct S4: virtual S3, S2 {
96 S3() { }; in S4()
Dtype-definition-in-specifier.cpp6 struct S3;
18 struct S3 { int x; } s3; in f0() argument
Dempty-class-layout.cpp49 struct S3 { struct
53 struct S4 : Empty, S3 {
57 struct S5 : S3, Empty {};
Delaborated-type-specifier.cpp9 struct S3 *y;
13 bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) { in test_elab()
Dwarn-dangling-field.cpp26 struct S3 { struct
28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator in S3() argument
/external/clang/test/CodeGenCXX/
Dmangle-98.cpp3 template <bool B> struct S3 {}; struct
6 void f(S3<true>) {} in f()
9 void f(S3<false>) {} in f()
12 void f2(S3<100>) {} in f2()
Dwarn-padded-packed.cpp14 struct S3 { struct
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { } in f() argument
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
Dp5.cpp84 template <const volatile int& N> struct S3 { }; struct
105 S3<i> s3; in test()
106 S3<ci> s3c; in test()
107 S3<vi> s3v; in test()
108 S3<cvi> s3cv; in test()
/external/clang/test/Modules/Inputs/
Dredecl-merge-left.h50 struct S3;
51 struct S3;
56 struct S3 *produce_S3(void);
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
DBlowFish.java173 private final int[] S0, S1, S2, S3; // the s-boxes field in BlowFish
185 S3 = new int[SBOX_SK]; in BlowFish()
243 return (((S0[(x >>> 24)] + S1[(x >>> 16) & 0xff]) ^ S2[(x >>> 8) & 0xff]) + S3[x & 0xff]); in F()
286 System.arraycopy(KS3, 0, S3, 0, SBOX_SK); in setKey()
338 processTable(S2[SBOX_SK - 2], S2[SBOX_SK - 1], S3); in setKey()
/external/llvm/include/llvm/ADT/
DStringSwitch.h98 const char (&S2)[N2], const char (&S3)[N3], in Cases()
100 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value); in Cases()
105 const char (&S2)[N2], const char (&S3)[N3], in Cases()
107 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value) in Cases()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DBlowfishEngine.java303 private final int[] S0, S1, S2, S3; // the s-boxes field in BlowfishEngine
315 S3 = new int[SBOX_SK]; in BlowfishEngine()
397 ^ S2[(x >>> 8) & 0xff]) + S3[x & 0xff]); in F()
444 System.arraycopy(KS3, 0, S3, 0, SBOX_SK); in setKey()
502 processTable(S2[SBOX_SK - 2], S2[SBOX_SK - 1], S3); in setKey()
/external/llvm/unittests/Support/
DAlignOfTest.cpp53 struct S3 { int x; }; argument
61 struct D5 : S3 { char c; };
62 struct D6 : S2, S3 {};
63 struct D7 : S1, S3 {};
101 [AlignOf<S3>::Alignment > 0]
153 EXPECT_LE(alignOf<S1>(), alignOf<S3>()); in TEST()
235 EXPECT_EQ(alignOf<S3>(), alignOf<AlignedCharArrayUnion<S3> >()); in TEST()
290 EXPECT_EQ(sizeof(S3), sizeof(AlignedCharArrayUnion<S3>)); in TEST()
/external/llvm/test/CodeGen/Mips/
Do32_cc_byval.ll6 %struct.S3 = type { i8 }
29 %agg.tmp10 = alloca %struct.S3, align 4
32 %tmp11 = getelementptr inbounds %struct.S3* %agg.tmp10, i32 0, i32 0
34 …call void @callee3(float 2.100000e+01, %struct.S3* byval %agg.tmp10, %struct.S1* byval bitcast (%0…
42 declare void @callee3(float, %struct.S3* byval, %struct.S1* byval)
100 define void @f4(float %f, %struct.S3* nocapture byval %s3, %struct.S1* nocapture byval %s1) nounwin…
116 %c = getelementptr inbounds %struct.S3* %s3, i32 0, i32 0
Dfp-indexed-ls.ll5 %struct.S3 = type <{ i8, float }>
11 @s3 = external global %struct.S3
87 %0 = load float* getelementptr inbounds (%struct.S3* @s3, i32 0, i32 1), align 1
95 store float %f, float* getelementptr inbounds (%struct.S3* @s3, i32 0, i32 1), align 1
/external/dropbear/libtomcrypt/src/ciphers/
Dblowfish.c378 #define F(x) ((S1[byte(x,3)] + S2[byte(x,2)]) ^ S3[byte(x,1)]) + S4[byte(x,0)]
399 ulong32 *S1, *S2, *S3, *S4; in _blowfish_ecb_encrypt() local
409 S3 = skey->blowfish.S[2]; in _blowfish_ecb_encrypt()
461 ulong32 *S1, *S2, *S3, *S4; in _blowfish_ecb_decrypt() local
471 S3 = skey->blowfish.S[2]; in _blowfish_ecb_decrypt()
/external/fdlibm/
Dk_sin.c52 S3 = -1.98412698298579493134e-04, /* 0xBF2A01A0, 0x19C161D5 */ variable
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
/external/clang/test/SemaTemplate/
Dself-comparison.cpp21 struct S3 { struct
45 S3 s3; s3.foo<1, 1>(); in test() argument
/external/clang/test/Sema/
Dtype-spec-struct-union.c10 struct S3 *y;
14 int test_struct_scope(S1 *s1, struct S2 *s2, struct S3 *s3) { in test_struct_scope()

123