HomeSort by relevance Sort by last modified time
    Searched defs:S1 (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /external/clang/test/CodeGenCXX/
fastcall.cpp 10 struct S1 {
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 %
regparm.cpp 8 struct S1 {
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) {
mangle-subst.cpp 51 template <typename T> struct S1 {};
52 template<typename T> void ft3(S1<T>, S1<char>) { }
55 template void ft3<int>(S1<int>, S1<char>);
  /external/clang/test/SemaCXX/
attr-aligned.cpp 4 typedef struct S1 { char c; } S1 __attribute__((aligned(8)));
5 static_assert(alignof(S1) == 8, "attribute ignored");
6 static_assert(alignof(struct S1) == 1, "attribute applied to original type");
out-of-line-def-mismatch.cpp 4 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')}}
    [all...]
ms-interface.cpp 68 struct S1 : I6<S> {
new-null.cpp 7 struct S1 {
type-definition-in-specifier.cpp 4 struct S1;
14 typedef struct S1 { int x; } S1_typedef;
  /external/chromium_org/third_party/opus/src/silk/float/
apply_sine_window_FLP.c 46 silk_float freq, c, S0, S1;
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/chromium_org/v8/test/mjsunit/compiler/
dead-string-char-code-at.js 30 var S1 = "string1";
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));
dead-string-char-code-at2.js 30 var S1 = "string1";
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/libopus/silk/float/
apply_sine_window_FLP.c 46 silk_float freq, c, S0, S1;
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;
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_sinf.c 27 S1 = -0x15555554cbac77.0p-55, /* -0.166666666416265235595 */
45 return (x + s*(S1+z*S2)) + s*w*r;
k_sin.c 31 * sin(x) ~ x + S1*x + ... + S6*x
35 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
44 * sin(x) = x + (S1*x + (x *(r-y/2)+y))
52 S1 = -1.66666666666666324348e-01, /* 0xBFC55555, 0x55555549 */
68 if(iy==0) return x+v*(S1+z*r);
69 else return x-((z*(half*y-v*r)-y)-v*S1);
  /external/clang/test/CXX/class/class.nest/
p3.cpp 20 struct S1 { };
22 struct S1;
24 struct S2::S1 { };
25 S1 s1; member in namespace:PR6107
  /external/clang/test/Index/Inputs/
t1.c 11 struct S1 {
20 struct S1 s1; local
21 s1.x = 0;
  /external/clang/test/PCH/
check-deserializations.cpp 9 struct S1 {
24 S1 *s1; variable
31 void test(S1*, S2*) {
  /external/clang/test/Sema/
MicrosoftCompatibility.c 18 __declspec(align(32768)) struct S1 { int a; } s; /* expected-error {{requested alignment must be 8192 bytes or smaller}} */
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p5.cpp 19 struct S1 {
26 S1 s1; variable
28 struct alignas(2) S4 : S1 { // expected-error {{requested alignment is less than minimum alignment of 8 for type 'S4'}}
30 struct S5 : S1 {
31 alignas(2) S1 s1; // expected-error {{requested alignment is less than minimum alignment of 8 for type 'S1'}} member in struct:S5
34 S1 s1; member in struct:S6
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p7.cpp 46 struct S1 {
48 S1 &operator=(int*);
52 S1 &s1 = operator=(&this->x); local
  /external/clang/test/Index/
annotate-tokens.cpp 16 struct S1 { void f(); };
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:16:
    [all...]
  /external/clang/test/SemaTemplate/
self-comparison.cpp 7 template <int A, int B> struct S1 {
43 S1<1, 1> s1; s1.foo(); local
  /external/fdlibm/
k_sin.c 26 * 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 */
72 if(iy==0) return x+v*(S1+z*r);
73 else return x-((z*(half*y-v*r)-y)-v*S1);
  /external/wpa_supplicant_8/src/crypto/
sha1-tlsprf.c 34 const u8 *S1, *S2;
63 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
67 S1 = secret;
70 /* The last byte of S1 will be shared with S2 */
74 hmac_md5_vector(S1, L_S1, 2, &MD5_addr[1], &MD5_len[1], A_MD5);
81 hmac_md5_vector(S1, L_S1, 3, MD5_addr, MD5_len, P_MD5);
83 hmac_md5(S1, L_S1, A_MD5, MD5_MAC_LEN, A_MD5);
  /ndk/tests/device/test-stlport_shared-exception/jni/
vtable2.cpp 14 struct S1 : virtual public S0
16 virtual void s1 ();
19 struct S2 : virtual public S1
21 virtual void s1 ();
32 virtual void s1 ();
39 void S1::s1 () function in class:S1
43 void S2::s1 () function in class:S2
55 void S4::s1 () function in class:S4
69 S1 primary vtabl
    [all...]

Completed in 1339 milliseconds

1 2 3 4 5 6