Searched refs:S1 (Results 1 - 25 of 428) sorted by relevance

1234567891011>>

/external/clang/test/Modules/
H A Dmisplaced-5.c4 struct S1 { // expected-note{{'struct S1' begins here}} struct
5 #include "dummy.h" // expected-error{{import of module 'dummy' appears within 'struct S1'}}
/external/clang/test/SemaCXX/
H A Dout-of-line-def-mismatch.cpp4 struct S1;
10 void func(S1*); // expected-note {{type of 1st parameter of member declaration does not match definition ('N2::S1 *' vs 'N2::N1::S1 *')}}
11 void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaration does not match definition ('const N2::S1 *' vs 'const N2::N1::S1 *')}}
12 void func(const S1*, unsigned); //expected-note {{type of 1st parameter of member declaration does not match definition ('const N2::S1 *' vs 'N2::N1::S1')}}
16 struct S1 {}; struct in namespace:N2::N1
21 func(C1&, unsigned, const S1*) argument
[all...]
H A Dattr-aligned.cpp4 typedef struct S1 { char c; } S1 __attribute__((aligned(8))); typedef in typeref:struct:S1
5 static_assert(alignof(S1) == 8, "attribute ignored");
6 static_assert(alignof(struct S1) == 1, "attribute applied to original type");
H A Dwarn-unused-variables.cpp77 struct S1 { struct in namespace:PR11550
78 S1();
80 S1 makeS1();
81 void testS1(S1 a) {
83 S1 x = makeS1(); // expected-warning {{unused variable 'x'}}
86 S1 y;
89 S1 z = a; // expected-warning {{unused variable 'z'}}
108 S1 m;
141 struct S1 { struct in namespace:ctor_with_cleanups
142 ~S1();
[all...]
/external/clang/test/Modules/Inputs/
H A DMethodPoolString1.h2 @interface S1
H A Delaborated-type-structs.h1 struct S1;
H A Dredecl-merge-top.h14 struct S1;
/external/clang/test/Modules/Inputs/UseAfterFree/
H A DUseAfterFreePublic.h1 @interface S1
/external/clang/test/CXX/class/class.nest/
H A Dp3.cpp20 struct S1 { }; struct in namespace:PR6107
22 struct S1;
24 struct S2::S1 { }; struct in class:PR6107::S2
25 S1 s1;
/external/clang/test/CodeGenCXX/
H A Dfastcall.cpp10 struct S1 { struct
12 S1(const S1 &y);
15 void __attribute__((fastcall)) foo2(S1 a, int b);
16 void bar2(S1 a, int b) {
18 // CHECK: call x86_fastcallcc void @_Z4foo22S1i(%struct.S1* inreg %{{.*}}, i32 inreg %
H A Dcfi-blacklist.cpp5 struct S1 { struct
20 void s1f(S1 *s1) {
H A Dregparm.cpp8 struct S1 { struct
10 S1(const S1 &y);
13 void __attribute__((regparm(3))) foo2(S1 a, int b);
14 // CHECK: declare void @_Z4foo22S1i(%struct.S1* inreg, i32 inreg)
15 void bar2(S1 a, int b) {
H A Ddebug-info-nodebug.cpp19 struct S1 { struct
23 NODEBUG S1 global_struct = { 2, 3 };
24 // YESINFO-DAG: !DICompositeType({{.*}} name: "S1"
25 // NOINFO-NOT: !DICompositeType({{.*}} name: "S1"
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.unused/
H A Dp1.cpp3 struct [[maybe_unused]] S1 {}; // ok struct
/external/libopus/silk/float/
H A Dapply_sine_window_FLP.c46 silk_float freq, c, S0, S1; local
63 S1 = freq;
68 S1 = 0.5f * c;
74 px_win[ k + 0 ] = px[ k + 0 ] * 0.5f * ( S0 + S1 );
75 px_win[ k + 1 ] = px[ k + 1 ] * S1;
76 S0 = c * S1 - S0;
77 px_win[ k + 2 ] = px[ k + 2 ] * 0.5f * ( S1 + S0 );
79 S1 = c * S0 - S1;
/external/clang/test/PCH/
H A Dpragma-pointers_to_members.cpp22 struct S1;
27 static_assert(sizeof(int S1::*) == 4, "");
H A Dcheck-deserializations.cpp12 struct S1 { struct
36 S1 *s1;
43 void test(S1*, S2*) {
/external/clang/test/CodeGen/
H A Dmcu-struct-return.c23 struct S1 { struct
41 struct S1 bar1() { return s1; }
43 struct S1 bar3(union U1 u) { return s1; }
55 struct S1 y1 = bar1();
57 struct S1 y3 = bar3(x1);
/external/llvm/include/llvm/ADT/
H A DSetOperations.h23 bool set_union(S1Ty &S1, const S2Ty &S2) { argument
28 if (S1.insert(*SI).second)
36 /// is nicer to use. Functionally, this iterates through S1, removing
40 void set_intersect(S1Ty &S1, const S2Ty &S2) { argument
41 for (typename S1Ty::iterator I = S1.begin(); I != S1.end();) {
44 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2
51 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) { argument
53 for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1
63 set_subtract(S1Ty &S1, const S2Ty &S2) argument
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DSetOperations.h23 bool set_union(S1Ty &S1, const S2Ty &S2) { argument
28 if (S1.insert(*SI).second)
36 /// is nicer to use. Functionally, this iterates through S1, removing
40 void set_intersect(S1Ty &S1, const S2Ty &S2) { argument
41 for (typename S1Ty::iterator I = S1.begin(); I != S1.end();) {
44 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2
51 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) { argument
53 for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1
63 set_subtract(S1Ty &S1, const S2Ty &S2) argument
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.nodiscard/
H A Dp1.cpp3 struct [[nodiscard]] S1 {}; // ok struct
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
H A Dp5.cpp25 struct S1 { struct
32 S1 s1;
34 struct alignas(2) S4 : S1 { // expected-error {{requested alignment is less than minimum alignment of 8 for type 'S4'}}
36 struct S5 : S1 {
37 alignas(2) S1 s1; // expected-error {{requested alignment is less than minimum alignment of 8 for type 'S1'}}
40 S1 s1;
42 struct S7 : S1 {
44 struct alignas(2) alignas(8) alignas(1) S8 : S1 {
47 S1 s
[all...]
/external/clang/test/Index/Inputs/
H A Dt1.c11 struct S1 { struct
20 struct S1 s1;
/external/pcre/dist2/src/sljit/
H A DsljitNativeSPARC_32.c30 return push_inst(compiler, OR | D(dst) | S1(0) | IMM(imm), DR(dst));
33 return (imm & 0x3ff) ? push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (imm & 0x3ff), DR(dst)) : SLJIT_SUCCESS;
50 return push_inst(compiler, OR | D(dst) | S1(0) | S2(src2), DR(dst));
58 return push_inst(compiler, AND | D(dst) | S1(src2) | IMM(0xff), DR(dst));
59 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(24), DR(dst)));
60 return push_inst(compiler, SRA | D(dst) | S1(dst) | IMM(24), DR(dst));
70 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(16), DR(dst)));
71 return push_inst(compiler, (op == SLJIT_MOV_S16 ? SRA : SRL) | D(dst) | S1(dst) | IMM(16), DR(dst));
79 return push_inst(compiler, XNOR | (flags & SET_FLAGS) | D(dst) | S1(0) | S2(src2), DR(dst) | (flags & SET_FLAGS));
84 FAIL_IF(push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(src
[all...]
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp5 struct S1 { struct
6 constexpr S1() = default; // expected-error {{defaulted definition of default constructor is not constexpr}}
7 constexpr S1(const S1&) = default;
8 constexpr S1(S1&&) = default;
9 constexpr S1 &operator=(const S1&) const = default; // expected-error {{explicitly-defaulted copy assignment operator may not have}}
10 constexpr S1 &operator=(S1
[all...]

Completed in 455 milliseconds

1234567891011>>