/external/clang/test/SemaCXX/ |
type-definition-in-specifier.cpp | 8 struct S5; 23 struct S5 { int x; } f1() { return S5(); } // expected-error{{result type}}
|
warn-dangling-field.cpp | 39 struct S5 { 42 S5 s5 = { 0 }; // ok, lifetime-extended variable 45 S5 s5; // expected-note {{here}} member in struct:S6 46 S6() : s5 { 0 } {} // expected-warning {{binding reference subobject of member 's5' to a temporary}} 49 struct S7 : S5 { 50 S7() : S5 { 0 } {} // expected-warning {{binding reference member 'x' to a temporary}}
|
elaborated-type-specifier.cpp | 41 int test_funcparam_scope(struct S5 * s5) { 42 struct S5 { int y; } *s5_2 = 0; 43 if (s5 == s5_2) return 1; // expected-error {{comparison of distinct pointer types ('struct S5 *' and 'struct S5 *')}}
|
dcl_ambig_res.cpp | 71 struct S5 { 75 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}}
|
alignof.cpp | 56 struct S5 { 60 const int test8 = __alignof__(S5::x);
|
empty-class-layout.cpp | 58 struct S5 : S3, Empty {}; 59 SA(9, sizeof(S5) == 2); 61 struct S6 : S5 { };
|
/external/clang/test/OpenMP/ |
parallel_private_messages.cpp | 34 class S5 { // expected-note {{'S5' declared here}} 36 S5():a(0) {} 38 S5(int v):a(v) { } 45 S5 g(5); // expected-note {{'g' defined here}}
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
k_sin.c | 35 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2 42 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6)))) 56 S5 = -2.50507602534068634195e-08, /* 0xBE5AE5E6, 0x8A2B9CEB */ 66 r = S2+z*(S3+z*S4) + z*w*(S5+z*S6);
|
/external/clang/test/CodeGenCXX/ |
warn-padded-packed.cpp | 24 struct S5 { 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*) { }
|
/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)))) 54 S5 = -2.50507602534068634195e-08, /* 0xBE5AE5E6, 0x8A2B9CEB */ 71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
|
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/ |
p2.cpp | 51 struct S5 { 52 constexpr S5(); 55 constexpr S5::S5() = default; 56 static_assert(S5().m == 4, "");
|
/art/runtime/arch/arm/ |
registers_arm.h | 62 S5 = 5,
|
/external/clang/test/ASTMerge/Inputs/ |
struct1.c | 30 struct S5 { int i : 8; unsigned j : 8; } x5;
|
struct2.c | 27 struct S5 { int i : 8; unsigned j : 8; } x5;
|
/external/clang/test/CXX/class/class.mem/ |
p1.cpp | 47 struct S5
|
/external/dropbear/libtomcrypt/src/ciphers/ |
cast5.c | 213 static const ulong32 S5[256] = { 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[GB(z, 0xC)] ^ S6[GB(z, 0xd)] ^ S7[GB(z, 0x3)] ^ S8[GB(z, 0x2)] ^ S7[GB(z, 0x9)] [all...] |
/external/srtp/crypto/hash/ |
sha1.c | 57 #define S5(X) ((X << 5) | (X >> 27)) 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(A) + f0(B,C,D) + E + W[t] + SHA_K0 [all...] |
/art/runtime/arch/mips/ |
registers_mips.h | 51 S5 = 21,
|
/bionic/libc/arch-mips/include/machine/ |
regnum.h | 57 #define S5 21
|
/development/ndk/platforms/android-9/arch-mips/include/machine/ |
regnum.h | 57 #define S5 21
|
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/ |
p5.cpp | 29 struct S5 : S1 {
|
/external/clang/test/Sema/ |
type-spec-struct-union.c | 37 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/ |
rijndael-alg-fst.c | 371 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[temp[1][1]] [all...] |
/prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/machine/ |
regnum.h | 57 #define S5 21
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/machine/ |
regnum.h | 57 #define S5 21
|