Searched defs:K2 (Results 1 - 11 of 11) sorted by relevance

/external/clang/test/SemaCXX/
H A Dusing-directive.cpp48 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'A::K2'}} struct in namespace:A
51 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'K2'}} struct
57 struct K2 *k2; // expected-error{{reference to 'K2' is ambiguous}}
59 K2 *k3; // expected-error{{reference to 'K2' is ambiguous}}
67 struct K2;
68 struct K2 { }; struct in namespace:N
[all...]
/external/dropbear/libtomcrypt/src/ciphers/
H A Dkhazad.c600 ulong64 K2, K1; local
617 K2 =
641 * K[r] = rho(c[r], K1) ^ K2;
652 c[r] ^ K2;
653 K2 = K1; K1 = skey->khazad.roundKeyEnc[r];
H A Danubis.c903 ulong32 v, K0, K1, K2, K3; local
949 K2 = T4[(kappa[N - 1] >> 8) & 0xff];
962 K2 = T4[(kappa[i] >> 8) & 0xff] ^
963 (T5[(K2 >> 24) & 0xff] & 0xff000000U) ^
964 (T5[(K2 >> 16) & 0xff] & 0x00ff0000U) ^
965 (T5[(K2 >> 8) & 0xff] & 0x0000ff00U) ^
966 (T5[(K2 ) & 0xff] & 0x000000ffU);
975 K0 = K1 = K2 = K3 = 0;
979 K2 ^= U[i][(kappa[i] >> 8) & 0xff];
985 skey->anubis.roundKeyEnc[r][2] = K2;
[all...]
/external/elfutils/lib/
H A Dsha1.c210 #define K2 0x8f1bbcdc macro
329 OP (40, FH, A, B, C, D, E, K2);
330 OP (41, FH, E, A, B, C, D, K2);
331 OP (42, FH, D, E, A, B, C, K2);
332 OP (43, FH, C, D, E, A, B, K2);
333 OP (44, FH, B, C, D, E, A, K2);
334 OP (45, FH, A, B, C, D, E, K2);
335 OP (46, FH, E, A, B, C, D, K2);
336 OP (47, FH, D, E, A, B, C, K2);
337 OP (48, FH, C, D, E, A, B, K2);
[all...]
/external/clang/test/SemaTemplate/
H A Dinstantiate-declref.cpp47 enum K2 { K2Val = sizeof(T)*2 } k2a; enum
49 K2 k2b = K2Val;
/external/e2fsprogs/lib/ext2fs/
H A Ddirhash.c64 #define K2 013240474631UL macro
85 ROUND(G, a, b, c, d, in[1] + K2, 3);
86 ROUND(G, d, a, b, c, in[3] + K2, 5);
87 ROUND(G, c, d, a, b, in[5] + K2, 9);
88 ROUND(G, b, c, d, a, in[7] + K2, 13);
89 ROUND(G, a, b, c, d, in[0] + K2, 3);
90 ROUND(G, d, a, b, c, in[2] + K2, 5);
91 ROUND(G, c, d, a, b, in[4] + K2, 9);
92 ROUND(G, b, c, d, a, in[6] + K2, 13);
115 #undef K2 macro
[all...]
/external/speex/libspeex/
H A Dmath_approx.h184 #define K2 -4096 macro
195 return ADD32(K1, MULT16_16_P13(x2, ADD32(K2, MULT16_16_P13(x2, ADD32(K3, MULT16_16_P13(K4, x2))))));
199 return SUB32(-K1, MULT16_16_P13(x2, ADD32(K2, MULT16_16_P13(x2, ADD32(K3, MULT16_16_P13(K4, x2))))));
242 K2 = 3-4*log(2)
/external/dbus/dbus/
H A Ddbus-sha.c109 #define K2 0x6ED9EBA1L /* Rounds 20-39 */ macro
206 subRound (A, B, C, D, E, f2, K2, expand ( eData, 20) );
207 subRound (E, A, B, C, D, f2, K2, expand ( eData, 21) );
208 subRound (D, E, A, B, C, f2, K2, expand ( eData, 22) );
209 subRound (C, D, E, A, B, f2, K2, expand ( eData, 23) );
210 subRound (B, C, D, E, A, f2, K2, expand ( eData, 24) );
211 subRound (A, B, C, D, E, f2, K2, expand ( eData, 25) );
212 subRound (E, A, B, C, D, f2, K2, expand ( eData, 26) );
213 subRound (D, E, A, B, C, f2, K2, expand ( eData, 27) );
214 subRound (C, D, E, A, B, f2, K2, expan
[all...]
/external/svox/pico/lib/
H A Dpicosig2.c532 picoos_int32 *D, K2, shift; local
548 K2 = 1 << shift;
549 K1 = (picoos_single) PICODSP_START_FLOAT_NORM * K2;
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp285 Instruction *&K2, bool &FlipMemInputs);
1650 Instruction *&K1, Instruction *&K2,
1674 K2 = new ShuffleVectorInst(K, UndefValue::get(VType),
1681 K2 = ExtractElementInst::Create(K, FlipMemInputs ? CV0 : CV1,
1686 K2->insertAfter(K1);
1687 InsertionPt = K2;
1876 Instruction *K1 = 0, *K2 = 0; local
1877 replaceOutputsOfPair(Context, I, J, K, InsertionPt, K1, K2,
1889 J->replaceAllUsesWith(K2);
1891 AA->replaceWithNewValue(J, K2);
1647 replaceOutputsOfPair(LLVMContext& Context, Instruction *I, Instruction *J, Instruction *K, Instruction *&InsertionPt, Instruction *&K1, Instruction *&K2, bool &FlipMemInputs) argument
[all...]
/external/openssl/crypto/modes/
H A Dgcm128.c1469 #define K2 K1 macro

Completed in 1123 milliseconds