/external/llvm/unittests/ADT/ |
D | ImmutableSetTest.cpp | 65 ImmutableSet<int> S3 = f.add(S, 2); in TEST_F() local 67 EXPECT_FALSE(S3.isEmpty()); in TEST_F() 68 EXPECT_FALSE(S == S3); in TEST_F() 69 EXPECT_TRUE(S != S3); in TEST_F() 71 EXPECT_TRUE(S3.contains(2)); in TEST_F() 73 EXPECT_FALSE(S2 == S3); in TEST_F() 74 EXPECT_TRUE(S2 != S3); in TEST_F() 76 EXPECT_FALSE(S3.contains(3)); in TEST_F() 84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43); in TEST_F() local 89 EXPECT_FALSE(S3.isEmpty()); in TEST_F() [all …]
|
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/ |
D | p2.cpp | 29 struct S3 { struct 30 S3() = default; 31 S3(const S3&) = default; 32 S3(S3&&) = default; 33 constexpr S3(int n) : n(n) {} in S3() argument 36 constexpr S3 s3a = S3(0); argument 37 constexpr S3 s3b = s3a; 38 constexpr S3 s3c = S3(); 39 constexpr S3 s3d; // expected-error {{default initialization of an object of const type 'const S3' …
|
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/ |
D | sema.cpp | 172 struct S3 { struct 173 virtual ~S3() throw(); 174 S3() throw(); 175 explicit S3(int); 176 S3(const S2&); 181 P(dynamic_cast<S3&>(f2<T&>())); in late2() 184 void operator +(const S1&, const S3&); 187 late<S3, false>(); in tlate() 188 late2<S3>(); in tlate()
|
/external/clang/test/SemaCXX/ |
D | warn-unused-variables.cpp | 115 struct S3 { struct 118 S3 makeS3(); 119 void testS3(S3 a) { in testS3() 120 S3 x = makeS3(); // expected-warning {{unused variable 'x'}} in testS3() 121 S3 y; in testS3() 122 S3 z = a; // expected-warning {{unused variable 'z'}} in testS3()
|
D | ptrtomember.cpp | 20 struct S3 { struct 24 void f3(S3* p, void (S3::*m)()) { in f3()
|
D | namespace.cpp | 26 namespace S3 { namespace 39 namespace S3 { namespace 51 namespace S3 { namespace
|
D | warn-reorder-ctor-initialization.cpp | 92 struct S3 { }; struct 94 struct S4: virtual S3, S2 { 96 S3() { }; in S4()
|
D | type-definition-in-specifier.cpp | 6 struct S3; 18 struct S3 { int x; } s3; in f0() argument
|
D | empty-class-layout.cpp | 49 struct S3 { struct 53 struct S4 : Empty, S3 { 57 struct S5 : S3, Empty {};
|
D | elaborated-type-specifier.cpp | 9 struct S3 *y; 13 bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) { in test_elab()
|
D | warn-dangling-field.cpp | 26 struct S3 { struct 28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator in S3() argument
|
/external/clang/test/CodeGenCXX/ |
D | mangle-98.cpp | 3 template <bool B> struct S3 {}; struct 6 void f(S3<true>) {} in f() 9 void f(S3<false>) {} in f() 12 void f2(S3<100>) {} in f2()
|
D | warn-padded-packed.cpp | 14 struct S3 { struct 76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { } in f() argument
|
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/ |
D | p5.cpp | 84 template <const volatile int& N> struct S3 { }; struct 105 S3<i> s3; in test() 106 S3<ci> s3c; in test() 107 S3<vi> s3v; in test() 108 S3<cvi> s3cv; in test()
|
/external/clang/test/Modules/Inputs/ |
D | redecl-merge-left.h | 50 struct S3; 51 struct S3; 56 struct S3 *produce_S3(void);
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/ |
D | BlowFish.java | 173 private final int[] S0, S1, S2, S3; // the s-boxes field in BlowFish 185 S3 = new int[SBOX_SK]; in BlowFish() 243 return (((S0[(x >>> 24)] + S1[(x >>> 16) & 0xff]) ^ S2[(x >>> 8) & 0xff]) + S3[x & 0xff]); in F() 286 System.arraycopy(KS3, 0, S3, 0, SBOX_SK); in setKey() 338 processTable(S2[SBOX_SK - 2], S2[SBOX_SK - 1], S3); in setKey()
|
/external/llvm/include/llvm/ADT/ |
D | StringSwitch.h | 98 const char (&S2)[N2], const char (&S3)[N3], in Cases() 100 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value); in Cases() 105 const char (&S2)[N2], const char (&S3)[N3], in Cases() 107 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value) in Cases()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
D | BlowfishEngine.java | 303 private final int[] S0, S1, S2, S3; // the s-boxes field in BlowfishEngine 315 S3 = new int[SBOX_SK]; in BlowfishEngine() 397 ^ S2[(x >>> 8) & 0xff]) + S3[x & 0xff]); in F() 444 System.arraycopy(KS3, 0, S3, 0, SBOX_SK); in setKey() 502 processTable(S2[SBOX_SK - 2], S2[SBOX_SK - 1], S3); in setKey()
|
/external/llvm/unittests/Support/ |
D | AlignOfTest.cpp | 53 struct S3 { int x; }; argument 61 struct D5 : S3 { char c; }; 62 struct D6 : S2, S3 {}; 63 struct D7 : S1, S3 {}; 101 [AlignOf<S3>::Alignment > 0] 153 EXPECT_LE(alignOf<S1>(), alignOf<S3>()); in TEST() 235 EXPECT_EQ(alignOf<S3>(), alignOf<AlignedCharArrayUnion<S3> >()); in TEST() 290 EXPECT_EQ(sizeof(S3), sizeof(AlignedCharArrayUnion<S3>)); in TEST()
|
/external/llvm/test/CodeGen/Mips/ |
D | o32_cc_byval.ll | 6 %struct.S3 = type { i8 } 29 %agg.tmp10 = alloca %struct.S3, align 4 32 %tmp11 = getelementptr inbounds %struct.S3* %agg.tmp10, i32 0, i32 0 34 …call void @callee3(float 2.100000e+01, %struct.S3* byval %agg.tmp10, %struct.S1* byval bitcast (%0… 42 declare void @callee3(float, %struct.S3* byval, %struct.S1* byval) 100 define void @f4(float %f, %struct.S3* nocapture byval %s3, %struct.S1* nocapture byval %s1) nounwin… 116 %c = getelementptr inbounds %struct.S3* %s3, i32 0, i32 0
|
D | fp-indexed-ls.ll | 5 %struct.S3 = type <{ i8, float }> 11 @s3 = external global %struct.S3 87 %0 = load float* getelementptr inbounds (%struct.S3* @s3, i32 0, i32 1), align 1 95 store float %f, float* getelementptr inbounds (%struct.S3* @s3, i32 0, i32 1), align 1
|
/external/dropbear/libtomcrypt/src/ciphers/ |
D | 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; in _blowfish_ecb_encrypt() local 409 S3 = skey->blowfish.S[2]; in _blowfish_ecb_encrypt() 461 ulong32 *S1, *S2, *S3, *S4; in _blowfish_ecb_decrypt() local 471 S3 = skey->blowfish.S[2]; in _blowfish_ecb_decrypt()
|
/external/fdlibm/ |
D | k_sin.c | 52 S3 = -1.98412698298579493134e-04, /* 0xBF2A01A0, 0x19C161D5 */ variable 71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
|
/external/clang/test/SemaTemplate/ |
D | self-comparison.cpp | 21 struct S3 { struct 45 S3 s3; s3.foo<1, 1>(); in test() argument
|
/external/clang/test/Sema/ |
D | type-spec-struct-union.c | 10 struct S3 *y; 14 int test_struct_scope(S1 *s1, struct S2 *s2, struct S3 *s3) { in test_struct_scope()
|