Searched refs:S5 (Results 1 - 25 of 28) sorted by relevance

12

/external/clang/test/SemaCXX/
H A Dtype-definition-in-specifier.cpp8 struct S5;
23 struct S5 { int x; } f1() { return S5(); } // expected-error{{result type}} struct
H A Delaborated-type-specifier.cpp41 int test_funcparam_scope(struct S5 * s5) {
42 struct S5 { int y; } *s5_2 = 0; struct
43 if (s5 == s5_2) return 1; // expected-error {{comparison of distinct pointer types ('struct S5 *' and 'struct S5 *')}}
H A Ddcl_ambig_res.cpp68 struct S5 { struct
72 int v(int(S5::value)); // expected-warning{{disambiguated as a function declaration}} expected-note{{add a pair of parentheses}} expected-error{{parameter declarator cannot be qualified}}
H A Dempty-class-layout.cpp57 struct S5 : S3, Empty {}; struct in namespace:Test0
58 SA(9, sizeof(S5) == 2);
60 struct S6 : S5 { };
H A Ddestructor.cpp147 struct S5 : public B { struct in namespace:nonvirtualdtor
/external/clang/test/CodeGenCXX/
H A Dwarn-padded-packed.cpp24 struct S5 { struct
29 } u; // expected-warning {{padding struct 'S5' with 3 bytes to align 'u'}}
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
H A Dmangle.cpp116 template<int I> struct S5 { }; struct
118 template<int I> void ft4(S5<I>) { }
121 ft4(S5<10>());
124 ft4(S5<20>());
/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))))
54 S5 = -2.50507602534068634195e-08, /* 0xBE5AE5E6, 0x8A2B9CEB */ variable
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp51 struct S5 { struct
52 constexpr S5();
55 constexpr S5::S5() = default;
56 static_assert(S5().m == 4, "");
/external/clang/test/ASTMerge/Inputs/
H A Dstruct1.c30 struct S5 { int i : 8; unsigned j : 8; } x5; struct
H A Dstruct2.c27 struct S5 { int i : 8; unsigned j : 8; } x5; struct
/external/clang/test/CXX/class/class.mem/
H A Dp1.cpp47 struct S5 struct
/external/dropbear/libtomcrypt/src/ciphers/
H A Dcast5.c213 static const ulong32 S5[256] = { variable
443 z[3] = x[3] ^ S5[GB(x, 0xD)] ^ S6[GB(x, 0xF)] ^ S7[GB(x, 0xC)] ^ S8[GB(x, 0xE)] ^ S7[GB(x, 0x8)];
444 z[2] = x[1] ^ S5[GB(z, 0x0)] ^ S6[GB(z, 0x2)] ^ S7[GB(z, 0x1)] ^ S8[GB(z, 0x3)] ^ S8[GB(x, 0xA)];
445 z[1] = x[0] ^ S5[GB(z, 0x7)] ^ S6[GB(z, 0x6)] ^ S7[GB(z, 0x5)] ^ S8[GB(z, 0x4)] ^ S5[GB(x, 0x9)];
446 z[0] = x[2] ^ S5[GB(z, 0xA)] ^ S6[GB(z, 0x9)] ^ S7[GB(z, 0xb)] ^ S8[GB(z, 0x8)] ^ S6[GB(x, 0xB)];
447 skey->cast5.K[i++] = S5[GB(z, 0x8)] ^ S6[GB(z, 0x9)] ^ S7[GB(z, 0x7)] ^ S8[GB(z, 0x6)] ^ S5[GB(z, 0x2)];
448 skey->cast5.K[i++] = S5[GB(z, 0xA)] ^ S6[GB(z, 0xB)] ^ S7[GB(z, 0x5)] ^ S8[GB(z, 0x4)] ^ S6[GB(z, 0x6)];
449 skey->cast5.K[i++] = S5[G
[all...]
/external/srtp/crypto/hash/
H A Dsha1.c57 #define S5(X) ((X << 5) | (X >> 27)) macro
160 TEMP = S5(A) + f0(B,C,D) + E + W[t] + SHA_K0;
164 TEMP = S5(A) + f1(B,C,D) + E + W[t] + SHA_K1;
168 TEMP = S5(A) + f2(B,C,D) + E + W[t] + SHA_K2;
172 TEMP = S5(A) + f3(B,C,D) + E + W[t] + SHA_K3;
315 TEMP = S5(A) + f0(B,C,D) + E + W[t] + SHA_K0;
319 TEMP = S5(A) + f1(B,C,D) + E + W[t] + SHA_K1;
323 TEMP = S5(A) + f2(B,C,D) + E + W[t] + SHA_K2;
327 TEMP = S5(A) + f3(B,C,D) + E + W[t] + SHA_K3;
368 TEMP = S5(
[all...]
/external/clang/test/Sema/
H A Dtype-spec-struct-union.c37 void f(struct S5 { int y; } s5); // expected-warning{{declaration of 'struct S5' will not be visible outside of this function}}
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-alg-fst.c371 b[ 0] = S5[temp[0][0]];
372 b[ 1] = S5[temp[3][1]];
373 b[ 2] = S5[temp[2][2]];
374 b[ 3] = S5[temp[1][3]];
375 b[ 4] = S5[temp[1][0]];
376 b[ 5] = S5[temp[0][1]];
377 b[ 6] = S5[temp[3][2]];
378 b[ 7] = S5[temp[2][3]];
379 b[ 8] = S5[temp[2][0]];
380 b[ 9] = S5[tem
[all...]
/external/clang/test/PCH/
H A Dcxx-templates.h139 struct S5 { struct
140 S5(int x);
144 S5 s;
/external/libgsm/src/
H A Dlong_term.c367 S5 = 0, S6 = 0, S7 = 0, S8 = 0; local
375 E = W * d; S5 += E; \
412 if (S5 > L_max) { L_max = S5; Nc = lambda + 5; }
533 S5 = 0, S6 = 0, S7 = 0, S8 = 0; local
541 E = W * d; S5 += E; \
578 if (S5 > L_max) { L_max = S5; Nc = lambda + 5; }
747 S5 = 0, S6 = 0, S7 = 0, S8 = 0; local
755 E = W * d; S5
[all...]
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp55 struct S5 { A1 a1; A2 a2; A4 a4; A8 a8; }; struct in namespace:__anon9855
103 [AlignOf<S5>::Alignment > 0]
155 EXPECT_LE(alignOf<S1>(), alignOf<S5>());
237 EXPECT_EQ(alignOf<S5>(), alignOf<AlignedCharArrayUnion<S5> >());
292 EXPECT_EQ(sizeof(S5), sizeof(AlignedCharArrayUnion<S5>));
/external/clang/test/Parser/
H A DMicrosoftExtensions.c92 struct __declspec(deprecated frobble "testing") S5 {}; /* expected-warning {{unknown __declspec attribute 'frobble' ignored}} expected-warning {{__declspec attribute '"testing"' is not supported}} */
H A Dcxx0x-ambig.cpp59 struct S5 {
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsBaseInfo.h177 case Mips::S5: case Mips::S5_64: case Mips::F21: case Mips::D21_64:
/external/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp613 case ARM::S5: return ARM::S4;
666 case ARM::S4: return ARM::S5;
/external/valgrind/main/none/tests/arm/
H A Dvfp.c623 #define TESTINSN_vpush_vpop_f32(S1, Sval1, S2, Sval2, S3, Sval3, S4, S5, S6) \
629 "vmov "#S5", %4\n\t" \
637 "vpop {"#S5", "#S6"}\n\t" \
643 "vstmia %0!, {"#S5"}\n\t" \
648 : #S1, #S2, #S3, #S4, #S5, #S6, "r4", "memory" \
651 #S5" 0x%08x "#S6" 0x%08x\n", out[0], out[1],\
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp328 .Case("s5", Mips::S5)

Completed in 830 milliseconds

12