Searched defs:S3 (Results 1 - 25 of 39) sorted by relevance

12

/external/clang/test/CodeGenCXX/
H A Dmangle-98.cpp3 template <bool B> struct S3 {}; struct
6 void f(S3<true>) {}
9 void f(S3<false>) {}
12 void f2(S3<100>) {}
H A Dwarn-padded-packed.cpp14 struct S3 { struct
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
/external/clang/test/SemaCXX/
H A Dtype-definition-in-specifier.cpp6 struct S3;
18 struct S3 { int x; } s3; struct
H A Dptrtomember.cpp20 struct S3 { struct
24 void f3(S3* p, void (S3::*m)()) { argument
H A Dwarn-dangling-field.cpp26 struct S3 { struct
28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator function in struct:S3
H A Dwarn-overloaded-virtual.cpp29 struct S3 : public B3 { struct in inherits:B3
H A Dalias-template.cpp63 template<typename...T> struct S3 { // expected-note {{template parameter is declared here}} struct in namespace:InFunctions
H A Dnamespace.cpp26 namespace S3 { namespace in namespace:S1::S2
39 namespace S3 { namespace in namespace:S1::S2
51 namespace S3 { namespace in namespace:S1::S2
H A Dwarn-bad-memaccess.cpp11 struct S3 { float x, y; S1 s[4]; void (*f)(S1**); } s3; struct
H A Dwarn-unused-variables.cpp115 struct S3 { struct in namespace:PR11550
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'}}
H A Dempty-class-layout.cpp49 struct S3 { struct in namespace:Test0
53 struct S4 : Empty, S3 {
57 struct S5 : S3, Empty {};
H A Dwarn-reorder-ctor-initialization.cpp92 struct S3 { }; struct in namespace:T1
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/
H A Dself-comparison.cpp21 struct S3 { struct
45 S3 s3; s3.foo<1, 1>();
/external/fdlibm/
H A Dk_sin.c30 * |----- - (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 */ variable
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
/external/clang/test/Parser/
H A Dcxx0x-ambig.cpp50 struct S3 { struct
/external/llvm/include/llvm/ADT/
H A DStringSwitch.h98 const char (&S2)[N2], const char (&S3)[N3],
100 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value);
105 const char (&S2)[N2], const char (&S3)[N3],
107 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value)
97 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const T& Value) argument
104 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const T& Value) argument
/external/llvm/unittests/ADT/
H A DImmutableSetTest.cpp65 ImmutableSet<int> S3 = f.add(S, 2); local
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); local
89 EXPECT_FALSE(S3
122 ImmutableSet<int> S3 = f.add(S2, 3); local
145 ImmutableSet<char> S3 = f.add(f.add(S2, 'o'), 'u'); local
157 ImmutableSet<char> S3 = f.add(f.add(f.add(S2, 'f'), 'g'), 'h'); local
180 ImmutableSet<long> S3 = f.add(f.add(f.add(S2, 3), 4), 5); local
[all...]
/external/clang/test/ASTMerge/Inputs/
H A Dstruct1.c24 struct S3 { int i; float f; double d; } x3; struct
H A Dstruct2.c21 struct S3 { int i; float f; } x3; struct
/external/clang/test/CXX/class/class.mem/
H A Dp1.cpp30 struct S3 struct
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp3.cpp115 struct S3 { }; // expected-error {{types cannot be defined in a constexpr function}} struct
H A Dp1.cpp46 constexpr struct S3 {} s3 = S3(); struct
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp29 struct S3 { struct
30 S3() = default;
31 S3(const S3&) = default;
32 S3(S3&&) = default;
33 constexpr S3(int n) : n(n) {} function in struct:S3
36 constexpr S3 s3a = S3(0);
37 constexpr S3 s3
[all...]
/external/dropbear/libtomcrypt/src/ciphers/
H A Dblowfish.c378 #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; local
409 S3 = skey->blowfish.S[2];
461 ulong32 *S1, *S2, *S3, *S4; local
471 S3 = skey->blowfish.S[2];
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DBlowfishEngine.java303 private final int[] S0, S1, S2, S3; // the s-boxes field in class:BlowfishEngine
315 S3 = new int[SBOX_SK];
397 ^ S2[(x >>> 8) & 0xff]) + S3[x & 0xff]);
444 System.arraycopy(KS3, 0, S3, 0, SBOX_SK);
502 processTable(S2[SBOX_SK - 2], S2[SBOX_SK - 1], S3);

Completed in 972 milliseconds

12