Home
last modified time | relevance | path

Searched refs:S6 (Results 1 – 25 of 35) sorted by relevance

12

/external/dropbear/libtomcrypt/src/ciphers/
Dcast5.c258 static const ulong32 S6[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)]; in _cast5_setup()
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)]; in _cast5_setup()
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)]; in _cast5_setup()
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)]; in _cast5_setup()
447 …skey->cast5.K[i++] = S5[GB(z, 0x8)] ^ S6[GB(z, 0x9)] ^ S7[GB(z, 0x7)] ^ S8[GB(z, 0x6)] ^ S5[GB(z, … in _cast5_setup()
448 …skey->cast5.K[i++] = S5[GB(z, 0xA)] ^ S6[GB(z, 0xB)] ^ S7[GB(z, 0x5)] ^ S8[GB(z, 0x4)] ^ S6[GB(z, … in _cast5_setup()
449 …skey->cast5.K[i++] = S5[GB(z, 0xC)] ^ S6[GB(z, 0xd)] ^ S7[GB(z, 0x3)] ^ S8[GB(z, 0x2)] ^ S7[GB(z, … in _cast5_setup()
450 …skey->cast5.K[i++] = S5[GB(z, 0xE)] ^ S6[GB(z, 0xF)] ^ S7[GB(z, 0x1)] ^ S8[GB(z, 0x0)] ^ S8[GB(z, … in _cast5_setup()
452 … x[3] = z[1] ^ S5[GB(z, 0x5)] ^ S6[GB(z, 0x7)] ^ S7[GB(z, 0x4)] ^ S8[GB(z, 0x6)] ^ S7[GB(z, 0x0)]; in _cast5_setup()
[all …]
/external/llvm/unittests/Support/
DAlignOfTest.cpp60 struct S6 { double f(); }; struct
62 struct D2 : S6 { float g(); };
79 double S6::f() { return 0.0; } in f()
103 [AlignOf<double (S6::*)()>::Alignment > 0];
115 [AlignOf<S6>::Alignment > 0];
157 EXPECT_LE(alignOf<S1>(), alignOf<S6>()); in TEST()
228 EXPECT_EQ(alignOf<double (S6::*)()>(), in TEST()
229 alignOf<AlignedCharArrayUnion<double (S6::*)()> >()); in TEST()
235 EXPECT_EQ(alignOf<S6>(), alignOf<AlignedCharArrayUnion<S6> >()); in TEST()
283 EXPECT_EQ(sizeof(double (S6::*)()), in TEST()
[all …]
/external/llvm/test/CodeGen/PowerPC/
Djaggedstructs.ll12 %struct.S6 = type { [6 x i8] }
15 define void @test(%struct.S3* byval %s3, %struct.S5* byval %s5, %struct.S6* byval %s6, %struct.S7* …
17 …call void @check(%struct.S3* byval %s3, %struct.S5* byval %s5, %struct.S6* byval %s6, %struct.S7* …
48 declare void @check(%struct.S3* byval, %struct.S5* byval, %struct.S6* byval, %struct.S7* byval)
/external/clang/test/SemaCXX/
Dtype-definition-in-specifier.cpp9 struct S6;
25 void f2(struct S6 { int x; } p); // expected-error{{parameter type}}
Dempty-class-layout.cpp61 struct S6 : S5 { }; struct
62 SA(10, sizeof(S6) == 2);
Ddestructor.cpp151 struct S6 { struct
154 ~S6();
/external/fdlibm/
Dk_sin.c55 S6 = 1.58969099521155010221e-10; /* 0x3DE5D93A, 0x5ACFD57C */ variable
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
/external/clang/test/CodeGenCXX/
Dwarn-padded-packed.cpp32 struct S6 { // expected-warning {{padding size of 'S6' with 30 bits to alignment boundary}} struct
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { } in f() argument
Dmangle.cpp150 template<typename T> struct S6 { struct
154 template<typename T> void ft5(typename S6<T>::B) { } in ft5() argument
/external/clang/test/Sema/
Dtype-spec-struct-union.c40 struct S6 { struct
45 struct S6 a; in test_S6() argument
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
Dp5.cpp32 struct S6 { struct
41 S6 s6 alignas(4); // expected-error {{requested alignment is less than minimum alignment of 8 for t… argument
/external/libgsm/src/
Dlong_term.c367 S5 = 0, S6 = 0, S7 = 0, S8 = 0; variable
374 E = W * c; S6 += E; \
413 if (S6 > L_max) { L_max = S6; Nc = lambda + 6; }
533 S5 = 0, S6 = 0, S7 = 0, S8 = 0; variable
540 E = W * c; S6 += E; \
579 if (S6 > L_max) { L_max = S6; Nc = lambda + 6; }
747 S5 = 0, S6 = 0, S7 = 0, S8 = 0; variable
754 E = W * c; S6 += E; \
793 if (S6 > L_max) { L_max = S6; Nc = lambda + 6; }
/external/clang/test/PCH/
Dcxx-templates.h156 struct S6;
159 struct S6<const T [N]>
171 struct S7<int[N]> : S6<const int[N]> { };
Dcxx-templates.cpp38 S6<const int[17]>::t2 b6 = a6; in test()
/external/llvm/lib/Target/ARM/
DARMCallingConv.td65 CCIfType<[f32], CCAssignToReg<[S0, S1, S2, S3, S4, S5, S6, S7, S8,
77 CCIfType<[f32], CCAssignToReg<[S0, S1, S2, S3, S4, S5, S6, S7, S8,
172 CCIfType<[f32], CCAssignToReg<[S0, S1, S2, S3, S4, S5, S6, S7, S8,
184 CCIfType<[f32], CCAssignToReg<[S0, S1, S2, S3, S4, S5, S6, S7, S8,
DARMRegisterInfo.td84 def S6 : ARMFReg< 6, "s6">; def S7 : ARMFReg< 7, "s7">;
103 def D3 : ARMReg< 3, "d3", [S6, S7]>, DwarfRegNum<[259]>;
/external/clang/test/ASTMerge/Inputs/
Dstruct2.c30 struct S6 { int i : 8; unsigned j; } x6; argument
Dstruct1.c33 struct S6 { int i : 8; unsigned j : 8; } x6; struct
/external/llvm/test/TableGen/
DMultiClassInherit.td32 def S6 : C1<bs1, "baz">;
/external/clang/test/Parser/
DMicrosoftExtensions.c96 struct __declspec(unknown(12) deprecated) S6 {}; /* expected-warning {{unknown __declspec attribute… struct
Dcxx0x-ambig.cpp66 struct S6 { struct
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/
Dfr-FR_nk0_kdt_lfz1.pkb44 �>=5����S6�`�g��f~�����L�:��WU�pw k��v�0� ��R1����!���
/external/llvm/lib/Target/Mips/
DMipsRegisterInfo.td92 def S6 : MipsGPRReg< 22, "22">, DwarfRegNum<[22]>;
126 def S6_64 : Mips64GPRReg< 22, "22", [S6]>, DwarfRegNum<[22]>;
269 S0, S1, S2, S3, S4, S5, S6, S7,
/external/v8/src/arm/
Dconstants-arm.h226 S6 = 1 << 6, // Signed (or unsigned). enumerator
/external/iptables/utils/
Dpf.os314 S6:255:1:44:M*: Solaris:2.6-2.7::Solaris 2.6 to 7
385 S6:64:1:48:M*,N,N,S: Windows:98::Windows 98
419 S6:128:1:48:M*,N,N,S: Windows:2000:SP2:Windows XP, 2000 SP2+
420 S6:128:1:48:M*,N,N,S: Windows:XP::Windows XP, 2000 SP2+
438 S6:255:1:48:M536,N,N,S: Windows:95:winsock2:Windows 95 winsock 2

12