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

123456789

/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...]
H A Delaborated-type-specifier.cpp6 typedef struct S1 { struct
11 } S1; typedef in typeref:struct:S1
13 bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) {
H A Dnamespace.cpp21 namespace S1 { namespace
32 namespace S1 { namespace
49 namespace S1 { namespace
/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 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 Dmicrosoft-uuidof.cpp19 struct __declspec(uuid("12345678-1234-1234-1234-1234567890aB")) S1 { } s1;
33 GUID g = __uuidof(S1);
36 // First global use of __uuidof(S1) forces the creation of the global.
39 const GUID& gr = __uuidof(S1);
42 const GUID* gp = &__uuidof(S1);
76 GUID s1_1 = __uuidof(S1);
82 GUID s1_2 = __uuidof(S1);
H A Dmangle-subst.cpp51 template <typename T> struct S1 {}; struct in namespace:NS
52 template<typename T> void ft3(S1<T>, S1<char>) { }
55 template void ft3<int>(S1<int>, S1<char>);
/external/clang/test/PCH/
H A Dcheck-deserializations.cpp12 struct S1 { struct
27 S1 *s1;
34 void test(S1*, S2*) {
/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/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.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/v8/test/mjsunit/compiler/
H A Ddead-string-char-code-at.js30 var S1 = "string1"; variable
53 var S3 = S1 + S2;
55 assertEquals(S1, dead1(S1, S2));
56 assertEquals(S1, dead2(S1, S2));
57 assertEquals("11", dead3(S1, S2));
68 assertEquals(S3, dead2(S3, S1));
H A Ddead-string-char-code-at2.js30 var S1 = "string1"; variable
53 var S3 = S1 + S2;
55 assertEquals(S1, dead1(S1, S2));
56 assertEquals(S1, dead2(S1, S2));
57 assertEquals("11", dead3(S1, S2));
68 assertEquals(S3, dead2(S3, S1));
/external/pcre/dist/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_SH ? 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/Modules/Inputs/
H A Dredecl-merge-top.h14 struct S1;
/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...]
/external/clang/test/Index/
H A Dannotate-tokens.cpp16 struct S1 { void f(); }; struct
17 struct S2 { S1 *operator->(); };
101 // CHECK: Keyword: "struct" [16:1 - 16:7] StructDecl=S1:16:8 (Definition)
102 // CHECK: Identifier: "S1" [16:8 - 16:10] StructDecl=S1:16:8 (Definition)
103 // CHECK: Punctuation: "{" [16:11 - 16:12] StructDecl=S1:16:8 (Definition)
108 // CHECK: Punctuation: ";" [16:21 - 16:22] StructDecl=S1:16:8 (Definition)
109 // CHECK: Punctuation: "}" [16:23 - 16:24] StructDecl=S1:16:8 (Definition)
114 // CHECK: Identifier: "S1" [17:13 - 17:15] TypeRef=struct S1
[all...]
/external/guava/guava-tests/benchmark/com/google/common/base/
H A DObjectsBenchmark.java33 private static final String S1 = "Ninety five"; field in class:ObjectsBenchmark
43 dummy += Objects.hashCode(S0, S1);
51 dummy += Objects.hashCode(S0, S1, S2);
59 dummy += Objects.hashCode(S0, S1, S2, S3);
67 dummy += Objects.hashCode(S0, S1, S2, S3, S4);
75 dummy += Objects.hashCode(I2, S1, D1, S2, I0);
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp7.cpp46 struct S1 { struct
48 S1 &operator=(int*);
52 S1 &s1 = operator=(&this->x);
/external/fdlibm/
H A Dk_sin.c26 * sin(x) ~ x + S1*x + ... + S6*x
30 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
39 * sin(x) = x + (S1*x + (x *(r-y/2)+y))
50 S1 = -1.66666666666666324348e-01, /* 0xBFC55555, 0x55555549 */ variable
72 if(iy==0) return x+v*(S1+z*r);
73 else return x-((z*(half*y-v*r)-y)-v*S1);
/external/clang/test/OpenMP/
H A Dthreadprivate_codegen.cpp8 // CHECK-DAG: [[S1:%.+]] = type { [[INT:i[0-9]+]] }
15 // CHECK-DEBUG-DAG: [[S1:%.+]] = type { [[INT:i[0-9]+]] }
22 struct S1 { struct
24 S1() function in struct:S1
27 S1(int a) function in struct:S1
30 S1(const S1 &s) { function in struct:S1
33 ~S1() {
104 // CHECK-DAG: [[GS1:@.+]] = internal global [[S1]] zeroinitializer
108 // CHECK-DAG: [[ARR_X:@.+]] = global [2 x [3 x [[S1]]]] zeroinitialize
[all...]

Completed in 555 milliseconds

123456789