Searched defs:S4 (Results 1 - 25 of 34) sorted by relevance

12

/external/clang/test/Modules/Inputs/
H A Dredecl-merge-left.h52 struct S4 { struct
57 void consume_S4(struct S4*);
/external/clang/test/SemaCXX/
H A Dwarn-dangling-field.cpp31 template <typename T> struct S4 { struct
33 S4(int i) : x(i) {} // expected-warning {{binding reference member 'x' to stack allocated parameter 'i'}} function in struct:S4
36 template struct S4<int>; // no warning from this instantiation
37 template struct S4<int&>; // expected-note {{in instantiation}}
H A Dalignof.cpp45 struct S4 { struct
H A Dcxx11-crashes.cpp23 struct S4 { struct in namespace:rdar12240916
29 S4 x;
33 S4 foo2() {
34 S4 s;
H A Ddcl_ambig_res.cpp37 struct S4 { struct
40 S4<int()> x; //type-id
41 S4<int(1)> y; // expected-error{{must be a type}}
H A Dwarn-overloaded-virtual.cpp38 struct S4 : public B4 { struct in inherits:B4
H A Dwarn-reorder-ctor-initialization.cpp94 struct S4: virtual S3, S2 { struct in namespace:T1
95 S4() : S2(), // expected-warning {{base class 'T1::S2' will be initialized after base 'T1::S3'}} function in struct:T1::S4
H A Dempty-class-layout.cpp54 struct S4 : Empty, S3 { struct in namespace:Test0
56 SA(8, sizeof(S4) == 2);
/external/clang/test/SemaTemplate/
H A Dself-comparison.cpp28 template <int A> struct S4 { struct
46 S4<1> s4; s4.foo<1>();
/external/fdlibm/
H A Dk_sin.c30 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
37 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6))))
53 S4 = 2.75573137070700676789e-06, /* 0x3EC71DE3, 0x57B1FE7D */ variable
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
/external/clang/test/CodeGen/
H A Dpragma-pack-1.c44 struct S4 struct
64 // CHECK: %struct.S4 = type { [3 x i8], %struct.T4, i32 }
/external/clang/test/OpenMP/
H A Dparallel_private_messages.cpp28 class S4 { // expected-note {{'S4' declared here}} class
30 S4();
32 S4(int v):a(v) { } function in class:S4
44 S4 e(4); // expected-note {{'e' defined here}}
/external/llvm/include/llvm/ADT/
H A DStringSwitch.h106 const char (&S4)[N4], const T& Value) {
108 .Case(S4, Value);
104 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const T& Value) argument
/external/llvm/unittests/ADT/
H A DImmutableSetTest.cpp85 ImmutableSet<int> S4 = f.add(S2, 9); local
90 EXPECT_FALSE(S4.isEmpty());
109 EXPECT_TRUE(S4.contains(9));
110 EXPECT_TRUE(S4.contains(3));
111 EXPECT_TRUE(S4.contains(4));
112 EXPECT_TRUE(S4.contains(5));
113 EXPECT_FALSE(S4.contains(20));
114 EXPECT_FALSE(S4.contains(43));
123 ImmutableSet<int> S4 = f.remove(S3, 3); local
127 EXPECT_FALSE(S4
[all...]
/external/clang/test/CodeGenCXX/
H A Dwarn-padded-packed.cpp19 struct S4 { struct
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
/external/clang/test/ASTMerge/Inputs/
H A Dstruct1.c27 struct S4 { int i; } x4; struct
H A Dstruct2.c24 struct S4 { int i; float f; } x4; struct
/external/clang/test/CXX/class/class.mem/
H A Dp1.cpp33 struct S4 struct in struct:S3
39 struct S4 struct
44 int S4::v4; //expected-note{{previous definition is here}}
45 int S4::v4; //expected-error{{redefinition of 'v4'}}
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp41 struct S4 { struct
42 S4() = default;
43 S4(const S4&) = default; // expected-note {{here}}
44 S4(S4&&) = default; // expected-note {{here}}
47 constexpr S4 s4a{}; // ok
48 constexpr S4 s4b = S4(); // expected-error {{constant expression}} expected-note {{non-constexpr constructor}}
49 constexpr S4 s4
[all...]
/external/dropbear/libtomcrypt/src/ciphers/
H A 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; local
410 S4 = skey->blowfish.S[3];
461 ulong32 *S1, *S2, *S3, *S4; local
472 S4 = skey->blowfish.S[3];
H A Dcast5.c168 static const ulong32 S4[256] = { variable
513 return ((S1[byte(I, 3)] ^ S2[byte(I,2)]) - S3[byte(I,1)]) + S4[byte(I,0)];
521 return ((S1[byte(I, 3)] - S2[byte(I,2)]) + S3[byte(I,1)]) ^ S4[byte(I,0)];
529 return ((S1[byte(I, 3)] + S2[byte(I,2)]) ^ S3[byte(I,1)]) - S4[byte(I,0)];
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp51 struct S4 {} constexpr s4 = S4(); struct
/external/clang/test/Sema/
H A Dtype-spec-struct-union.c27 // the type "struct S4" declared in the function parameter list has
29 // case, is that the code is ill-formed but we warn about the two S4's
31 int test_struct_scope_3(struct S4 * s4) { // expected-warning{{declaration of 'struct S4' will not be visible outside of this function}}
32 struct S4 { int y; } *s4_2 = 0; struct
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp58 struct S4 { double y; }; struct in namespace:__anon21865
113 [AlignOf<S4>::Alignment > 0]
155 EXPECT_LE(alignOf<S1>(), alignOf<S4>());
233 EXPECT_EQ(alignOf<S4>(), alignOf<AlignedCharArrayUnion<S4> >());
288 EXPECT_EQ(sizeof(S4), sizeof(AlignedCharArrayUnion<S4>));
/external/clang/test/PCH/
H A Dcxx-templates.h129 struct S4 { struct
132 extern template struct S4<int>;
135 S4<int> s;

Completed in 1675 milliseconds

12