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

1 2 3 4

  /external/clang/test/PCH/
check-deserializations.cpp 8 struct S1 {
17 void test(S1*) {
  /external/clang/test/SemaCXX/
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...]
type-definition-in-specifier.cpp 4 struct S1;
14 typedef struct S1 { int x; } S1_typedef;
elaborated-type-specifier.cpp 6 typedef struct S1 {
11 } S1;
13 bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) {
14 if (s1->x == s2) return true;
15 if (s1->y == s3) return true;
namespace.cpp 21 namespace S1 {
32 namespace S1 {
49 namespace S1 {
warn-overloaded-virtual.cpp 8 struct S1 : public B1 {
warn-bad-memaccess.cpp 4 extern "C" void *memmove(void *s1, const void *s2, unsigned n);
5 extern "C" void *memcpy(void *s1, const void *s2, unsigned n);
6 extern "C" void *memcmp(void *s1, const void *s2, unsigned n);
9 struct S1 {} s1; variable in typeref:struct:S1
11 struct S3 { float x, y; S1 s[4]; void (*f)(S1**); } s3;
20 struct X2 : virtual S1 {} x2;
100 memset(&s1, 0, sizeof s1);
    [all...]
warn-unused-variables.cpp 85 struct S1 {
86 S1();
88 S1 makeS1();
89 void testS1(S1 a) {
91 S1 x = makeS1(); // expected-warning {{unused variable 'x'}}
94 S1 y;
97 S1 z = a; // expected-warning {{unused variable 'z'}}
116 S1 m;
  /bionic/libm/src/
k_sinf.c 28 S1 = -0x15555554cbac77.0p-55, /* -0.166666666416265235595 */
46 return (x + s*(S1+z*S2)) + s*w*r;
k_sin.c 32 * sin(x) ~ x + S1*x + ... + S6*x
36 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
45 * sin(x) = x + (S1*x + (x *(r-y/2)+y))
53 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 19 struct S1 { };
21 struct S1;
23 struct S2::S1 { };
24 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/Index/
annotate-tokens.cpp 16 struct S1 { void f(); };
17 struct S2 { S1 *operator->(); };
84 // CHECK: Keyword: "struct" [16:1 - 16:7] StructDecl=S1:16:8 (Definition)
85 // CHECK: Identifier: "S1" [16:8 - 16:10] StructDecl=S1:16:8 (Definition)
86 // CHECK: Punctuation: "{" [16:11 - 16:12] StructDecl=S1:16:8 (Definition)
91 // CHECK: Punctuation: ";" [16:21 - 16:22] StructDecl=S1:16:8 (Definition)
92 // CHECK: Punctuation: "}" [16:23 - 16:24] StructDecl=S1:16:8 (Definition)
97 // CHECK: Identifier: "S1" [17:13 - 17:15] TypeRef=struct S1:16:
    [all...]
  /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/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/CodeGenCXX/
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>);
warn-padded-packed.cpp 3 struct S1 {
5 short s; // expected-warning {{padding struct 'S1' with 1 byte to align 's'}}
6 long l; // expected-warning {{padding struct 'S1' with 4 bytes to align 'l'}}
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
  /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/llvm/lib/Transforms/Utils/
SimplifyInstructions.cpp 51 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
  /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);
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
p3.cpp 22 namespace N { struct S1 { struct IS1; }; }
24 struct S1::IS1 {
30 F1 f1() { return S1::IS1().member_func(); }
  /external/clang/test/Parser/
cxx0x-ambig.cpp 43 struct S1 {
  /external/llvm/unittests/ADT/
IntrusiveRefCntPtrTest.cpp 31 SimpleRefCounted *S1 = new SimpleRefCounted;
32 IntrusiveRefCntPtr<SimpleRefCounted> R1 = S1;
33 SimpleRefCounted *S2 = new SimpleRefCounted(*S1);
  /external/skia/bench/
ScalarBench.cpp 101 static SkBenchmark* S1(void* p) { return new ForcedIntComparisonBench(p); }
104 static BenchRegistry gReg1(S1);

Completed in 690 milliseconds

1 2 3 4