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

1 2 3

  /external/clang/test/CodeGenCXX/
mangle-98.cpp 3 template <bool B> struct S3 {};
6 void f(S3<true>) {}
9 void f(S3<false>) {}
12 void f2(S3<100>) {}
warn-padded-packed.cpp 14 struct S3 {
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
  /bionic/libm/src/
k_sinf.c 30 S3 = -0x1a00f9e2cae774.0p-65, /* -0.000198393348360966317347 */
44 r = S3+z*S4;
k_sin.c 36 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
43 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6))))
55 S3 = -1.98412698298579493134e-04, /* 0xBF2A01A0, 0x19C161D5 */
67 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /external/clang/test/SemaCXX/
ptrtomember.cpp 20 struct S3 {
24 void f3(S3* p, void (S3::*m)()) {
type-definition-in-specifier.cpp 6 struct S3;
18 struct S3 { int x; } s3; local
warn-dangling-field.cpp 26 struct S3 {
28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator
namespace.cpp 26 namespace S3 {
39 namespace S3 {
51 namespace S3 {
warn-overloaded-virtual.cpp 29 struct S3 : public B3 {
alias-template.cpp 63 template<typename...T> struct S3 { // expected-note {{template parameter is declared here}}
warn-bad-memaccess.cpp 11 struct S3 { float x, y; S1 s[4]; void (*f)(S1**); } s3; variable in typeref:struct:S3
102 memset(&s3, 0, sizeof s3);
warn-unused-variables.cpp 115 struct S3 {
118 S3 makeS3();
119 void testS3(S3 a) {
120 S3 x = makeS3(); // expected-warning {{unused variable 'x'}}
121 S3 y;
122 S3 z = a; // expected-warning {{unused variable 'z'}}
empty-class-layout.cpp 49 struct S3 {
53 struct S4 : Empty, S3 {
57 struct S5 : S3, Empty {};
warn-reorder-ctor-initialization.cpp 12 s3(3), // expected-warning {{field 's3' will be initialized after base 'BB1'}}
18 int s3; member in class:complex
92 struct S3 { };
94 struct S4: virtual S3, S2 {
95 S4() : S2(), // expected-warning {{base class 'T1::S2' will be initialized after base 'T1::S3'}}
96 S3() { };
  /external/clang/test/SemaTemplate/
self-comparison.cpp 21 struct S3 {
45 S3 s3; s3.foo<1, 1>(); local
  /external/fdlibm/
k_sin.c 30 * |----- - (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))))
52 S3 = -1.98412698298579493134e-04, /* 0xBF2A01A0, 0x19C161D5 */
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /external/llvm/unittests/ADT/
ImmutableSetTest.cpp 65 ImmutableSet<int> S3 = f.add(S, 2);
67 EXPECT_FALSE(S3.isEmpty());
68 EXPECT_FALSE(S == S3);
69 EXPECT_TRUE(S != S3);
71 EXPECT_TRUE(S3.contains(2));
73 EXPECT_FALSE(S2 == S3);
74 EXPECT_TRUE(S2 != S3);
76 EXPECT_FALSE(S3.contains(3));
84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43);
89 EXPECT_FALSE(S3.isEmpty())
    [all...]
  /external/clang/test/Parser/
cxx0x-ambig.cpp 50 struct S3 {
  /external/dropbear/libtomcrypt/src/ciphers/
blowfish.c 378 #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;
409 S3 = skey->blowfish.S[2];
461 ulong32 *S1, *S2, *S3, *S4;
471 S3 = skey->blowfish.S[2];
cast5.c 123 static const ulong32 S3[256] = {
    [all...]
  /external/clang/test/ASTMerge/Inputs/
struct1.c 24 struct S3 { int i; float f; double d; } x3;
struct2.c 21 struct S3 { int i; float f; } x3;
  /external/clang/test/CXX/class/class.mem/
p1.cpp 30 struct S3
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p3.cpp 115 struct S3 { }; // expected-error {{types cannot be defined in a constexpr function}}
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p2.cpp 29 struct S3 {
30 S3() = default;
31 S3(const S3&) = default;
32 S3(S3&&) = default;
33 constexpr S3(int n) : n(n) {}
36 constexpr S3 s3a = S3(0);
37 constexpr S3 s3b = s3a
    [all...]

Completed in 813 milliseconds

1 2 3