Searched defs:k1 (Results 1 - 25 of 92) sorted by relevance

1234

/external/openssl/crypto/des/
H A Drpw.c64 DES_cblock k,k1; local
78 if ((i=des_read_2passwords(&k,&k1,
87 printf("%02x ",k1[i]);
H A Dofb64ede.c67 DES_key_schedule *k1, DES_key_schedule *k2,
94 DES_encrypt3(ti,k1,k2,k3);
120 register unsigned char *out, long length, DES_key_schedule k1,
123 DES_ede3_ofb64_encrypt(in, out, length, k1,k2,k1, ivec, num);
65 DES_ede3_ofb64_encrypt(register const unsigned char *in, register unsigned char *out, long length, DES_key_schedule *k1, DES_key_schedule *k2, DES_key_schedule *k3, DES_cblock *ivec, int *num) argument
119 DES_ede2_ofb64_encrypt(register unsigned char *in, register unsigned char *out, long length, DES_key_schedule k1, DES_key_schedule k2, DES_cblock (*ivec), int *num) argument
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp17.cpp6 void k1() { function
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DDoubleKeyMap.cs9 public virtual TValue Put(TKey1 k1, TKey2 k2, TValue v) { argument
11 data.TryGetValue(k1, out data2);
15 data[k1] = data2;
23 public virtual TValue Get(TKey1 k1, TKey2 k2) { argument
25 data.TryGetValue(k1, out data2);
34 public virtual IDictionary<TKey2, TValue> Get(TKey1 k1) { argument
36 data.TryGetValue(k1, out value);
41 public virtual ICollection<TValue> Values(TKey1 k1) { argument
43 data.TryGetValue(k1, out data2);
56 public virtual ICollection<TKey2> KeySet(TKey1 k1) { argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
H A DDoubleKeyMap`3.cs9 public virtual TValue Put(TKey1 k1, TKey2 k2, TValue v) argument
12 data.TryGetValue(k1, out data2);
17 data[k1]=data2;
27 public virtual TValue Get(TKey1 k1, TKey2 k2) argument
30 data.TryGetValue(k1, out data2);
39 public virtual IDictionary<TKey2, TValue> Get(TKey1 k1) argument
42 data.TryGetValue(k1, out value);
47 public virtual ICollection<TValue> Values(TKey1 k1) argument
50 data.TryGetValue(k1, out data2);
64 public virtual ICollection<TKey2> KeySet(TKey1 k1) argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DDoubleKeyMap.java12 public Value put(Key1 k1, Key2 k2, Value v) { argument
13 Map<Key2, Value> data2 = data.get(k1);
17 data.put(k1, data2);
26 public Value get(Key1 k1, Key2 k2) { argument
27 Map<Key2, Value> data2 = data.get(k1);
32 public Map<Key2, Value> get(Key1 k1) { return data.get(k1); } argument
35 public Collection<Value> values(Key1 k1) { argument
36 Map<Key2, Value> data2 = data.get(k1);
47 public Set<Key2> keySet(Key1 k1) { argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DX9FieldElement.java31 public X9FieldElement(int m, int k1, int k2, int k3, ASN1OctetString s) argument
33 this(new ECFieldElement.F2m(m, k1, k2, k3, new BigInteger(1, s.getOctets())));
H A DX9FieldID.java40 * @param k1 The integer <code>k1</code> where <code>x<sup>m</sup> +
41 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
44 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
47 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
50 public X9FieldID(int m, int k1, int k2, int k3) argument
59 fieldIdParams.add(new ASN1Integer(k1));
65 pentanomialParams.add(new ASN1Integer(k1));
/external/clang/test/CXX/class/class.union/
H A Dp2-0x.cpp6 static constexpr int k1 = 0; member in union:U1
7 static const int k2 = k1;
11 int n[k1 + 3];
14 constexpr int U1::k1; member in class:U1
23 static const int k1; member in union:U2
27 template<typename T> constexpr int U2<T>::k1 = sizeof(U2<T>); member in class:U2
30 static_assert(U2<int>::k1 == sizeof(int), "");
31 static_assert(U2<char>::k1 == sizeof(char), "");
/external/clang/test/CXX/expr/expr.ass/
H A Dp9-cxx11.cpp33 int k1 = T() = { 1, 2 } = { 3, 4 }; // expected-error {{initializer list cannot be used on the left hand side of operator '='}} variable
/external/clang/test/CodeGenCXX/
H A Dvtable-layout-extreme.cpp27 int k1; member in class:Test1::C3
64 int k1; member in class:Test1::C7
75 int k1; member in class:Test1::C8
203 int k1; member in class:Test1::C9
H A Dstatic-data-member.cpp92 static const int k1; member in union:test5::U
98 const int U::k1 = (k0 = 9, 42); member in class:test5::U
/external/clang/test/PCH/
H A Dcxx11-enum-template.cpp21 int k1 = (int)S<int>::E::e; member in struct:S
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMapFauxverideShim.java53 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of(K k1, V v1) { argument
67 K k1, V v1, K k2, V v2) {
82 K k1, V v1, K k2, V v2, K k3, V v3) {
97 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
112 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
66 of( K k1, V v1, K k2, V v2) argument
81 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
96 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
111 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) argument
H A DForwardingSortedMap.java96 private int unsafeCompare(Object k1, Object k2) { argument
99 return ((Comparable<Object>) k1).compareTo(k2);
101 return ((Comparator<Object>) comparator).compare(k1, k2);
/external/openssh/
H A Dcipher-3des1.c56 EVP_CIPHER_CTX k1, k2, k3; member in struct:ssh1_3des_ctx
67 u_char *k1, *k2, *k3; local
77 k1 = k2 = k3 = (u_char *) key;
83 k1 += 16;
85 EVP_CIPHER_CTX_init(&c->k1);
89 EVP_CipherInit(&c->k1, EVP_des_cbc(), k1, NULL, enc);
93 if (EVP_CipherInit(&c->k1, EVP_des_cbc(), k1, NULL, enc) == 0 ||
116 EVP_Cipher(&c->k1, des
[all...]
/external/clang/test/SemaCXX/
H A Ddr1301.cpp66 int k1 = K().j.n; // expected-error {{call to implicitly-deleted default}} variable
H A Daddress-of-temporary.cpp45 void k1() { consume(S { Y{}.a }); } function in namespace:PointerToArrayDecay
/external/guava/guava/src/com/google/common/hash/
H A DMurmur3_128HashFunction.java60 long k1 = bb.getLong();
63 bmix64(k1, k2);
66 private void bmix64(long k1, long k2) { argument
67 k1 *= c1;
68 k1 = Long.rotateLeft(k1, 31);
69 k1 *= c2;
70 h1 ^= k1;
87 long k1 = 0;
111 k1
[all...]
/external/bluetooth/bluedroid/stack/smp/
H A Dsmp_cmac.c185 static void cmac_prepare_last_block (BT_OCTET16 k1, BT_OCTET16 k2) argument
198 smp_xor_128(&cmac_cb.text[0], k1);
218 UINT8 k1[BT_OCTET16_LEN], k2[BT_OCTET16_LEN]; local
227 leftshift_onebit(pp, k1);
228 smp_xor_128(k1, const_Rb);
232 leftshift_onebit(pp, k1);
235 if ( (k1[BT_OCTET16_LEN - 1] & 0x80) != 0 )
238 leftshift_onebit(k1, k2);
244 leftshift_onebit(k1, k2);
247 print128(k1, (cons
[all...]
/external/dropbear/libtomcrypt/src/ciphers/
H A Dkseed.c205 ulong32 tmp, k1, k2, k3, k4; local
216 LOAD32H(k1, key);
222 skey->kseed.K[2*i+0] = G(k1 + k3 - KCi[i]);
229 tmp = k1;
230 k1 = ((k1 >> 8) | (k2 << 24)) & 0xFFFFFFFF;
/external/freetype/src/base/
H A Dfttrigon.c68 FT_UInt32 v1, v2, k1, k2, hi, lo1, lo2, lo3; local
77 k1 = (FT_UInt32)FT_TRIG_SCALE >> 16; /* constant */
80 hi = k1 * v1;
81 lo1 = k1 * v2 + k2 * v1; /* can't overflow */
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableBiMap.java39 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) { argument
40 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1));
43 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) { argument
44 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2));
48 K k1, V v1, K k2, V v2, K k3, V v3) {
50 k1, v1, k2, v2, k3, v3));
54 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
56 k1, v1, k2, v2, k3, v3, k4, v4));
60 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
62 k1, v
47 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
53 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
59 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) argument
[all...]
H A DImmutableListMultimap.java62 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) { argument
65 builder.put(k1, v1);
72 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) { argument
75 builder.put(k1, v1);
84 K k1, V v1, K k2, V v2, K k3, V v3) {
87 builder.put(k1, v1);
97 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
100 builder.put(k1, v1);
111 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
114 builder.put(k1, v
83 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
96 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
110 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) argument
[all...]
/external/openssl/crypto/cmac/
H A Dcmac.c68 /* Keys k1 and k2 */
69 unsigned char k1[EVP_MAX_BLOCK_LENGTH]; member in struct:CMAC_CTX_st
82 static void make_kn(unsigned char *k1, unsigned char *l, int bl) argument
88 k1[i] = l[i] << 1;
90 k1[i] |= 1;
94 k1[bl - 1] ^= bl == 16 ? 0x87 : 0x1b;
119 OPENSSL_cleanse(ctx->k1, EVP_MAX_BLOCK_LENGTH);
144 memcpy(out->k1, in->k1, bl);
202 make_kn(ctx->k1, ct
[all...]

Completed in 522 milliseconds

1234