Searched defs:S4 (Results 1 - 25 of 27) 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 Ddcl_ambig_res.cpp34 struct S4 { struct
37 S4<int()> x; //type-id
38 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 Dempty-class-layout.cpp53 struct S4 : Empty, S3 { struct in namespace:Test0
55 SA(8, sizeof(S4) == 2);
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 Dconstructor-initializer.cpp268 struct S4 { struct in namespace:PR8075
270 S4() : s1(s1.baz()) {} function in struct:PR8075::S4
H A Ddestructor.cpp138 struct S4 : public S2 { // expected-warning {{has virtual functions but non-virtual destructor}} struct in namespace:nonvirtualdtor
/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/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.cpp50 struct S4 {} constexpr s4 = S4(); struct
/external/clang/test/PCH/
H A Dcxx-templates.h129 struct S4 { struct
132 extern template struct S4<int>;
135 S4<int> s;
/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
H A Dwarn-type-safety-mpi-hdf5.c235 struct S4 { char c; }; struct
250 struct S4 *s4_buf,
256 MPI_Send(s4_buf, 1, my_s4_compat_datatype); // expected-warning {{argument type 'struct S4 *' doesn't match specified 'mpi' type tag}}
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp54 struct S4 { double y; }; struct in namespace:__anon9262
102 [AlignOf<S4>::Alignment > 0]
154 EXPECT_LE(alignOf<S1>(), alignOf<S4>());
236 EXPECT_EQ(alignOf<S4>(), alignOf<AlignedCharArrayUnion<S4> >());
291 EXPECT_EQ(sizeof(S4), sizeof(AlignedCharArrayUnion<S4>));
/external/libgsm/src/
H A Dlong_term.c366 register float S0 = 0, S1 = 0, S2 = 0, S3 = 0, S4 = 0, local
376 E = W * e; S4 += E; \
411 if (S4 > L_max) { L_max = S4; Nc = lambda + 4; }
532 register float S0 = 0, S1 = 0, S2 = 0, S3 = 0, S4 = 0, local
542 E = W * e; S4 += E; \
577 if (S4 > L_max) { L_max = S4; Nc = lambda + 4; }
746 register float S0 = 0, S1 = 0, S2 = 0, S3 = 0, S4 = 0, local
756 E = W * e; S4
[all...]

Completed in 935 milliseconds

12