Searched refs:k2 (Results 1 - 25 of 116) sorted by relevance

12345

/external/clang/test/CXX/class/class.union/
H A Dp2-0x.cpp7 static const int k2 = k1; member in union:U1
8 static int k3 = k2; // expected-error {{non-const static data member must be initialized out of line}}
9 static constexpr double k4 = k2;
15 constexpr int U1::k2; member in class:U1
24 static double k2; member in union:U2
28 template<typename T> double U2<T>::k2 = 5.3; member in class:U2
/external/guava/guava/src/com/google/common/hash/
H A DMurmur3_128HashFunction.java61 long k2 = bb.getLong();
63 bmix64(k1, k2);
66 private void bmix64(long k1, long k2) { argument
76 k2 *= c2;
77 k2 = Long.rotateLeft(k2, 33);
78 k2 *= c1;
79 h2 ^= k2;
88 long k2 = 0;
92 k2
[all...]
/external/skia/include/effects/
H A DSkArithmeticMode.h16 * result = clamp[k1 * src * dst + k2 * src + k3 * dst + k4]
21 * k1=k2=k3=0, k4=1.0 results in returning opaque white
22 * k1=k3=k4=0, k2=1.0 results in returning the src
23 * k1=k2=k4=0, k3=1.0 results in returning the dst
25 static SkXfermode* Create(SkScalar k1, SkScalar k2,
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dmath-partial-sums.js9 var k2 = k3 = sk = ck = 0.0;
12 k2 = k*k;
13 k3 = k2*k;
24 a7 += 1.0/k2;
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dmath-partial-sums.js9 var k2 = k3 = sk = ck = 0.0;
12 k2 = k*k;
13 k3 = k2*k;
24 a7 += 1.0/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;
78 k2 += 8;
86 EVP_CIPHER_CTX_init(&c->k2);
90 EVP_CipherInit(&c->k2, EVP_des_cbc(), k2, NULL, !enc);
94 EVP_CipherInit(&c->k2, EVP_des_cbc(), k2, NULL, !enc) == 0 ||
117 EVP_Cipher(&c->k2, des
[all...]
/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
17 data2.TryGetValue(k2, out prev);
19 data2[k2] = v;
23 public virtual TValue Get(TKey1 k1, TKey2 k2) { argument
30 data2.TryGetValue(k2, out value);
67 foreach (IDictionary<TKey2, TValue> k2 in data.Values) {
68 foreach (TValue v in k2.Values) {
/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
21 data2.TryGetValue(k2, out prev);
23 data2[k2]= v;
27 public virtual TValue Get(TKey1 k1, TKey2 k2) argument
35 data2.TryGetValue(k2, out value);
77 foreach (IDictionary<TKey2, TValue> k2 in data.Values)
79 foreach (TValue v in k2.Values)
/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
20 prev = data2.get(k2);
22 data2.put(k2, v);
26 public Value get(Key1 k1, Key2 k2) { argument
29 return data2.get(k2);
55 for (Map<Key2, Value> k2 : data.values()) {
56 for (Value v : k2.values()) {
/external/skia/src/effects/
H A DSkArithmeticMode.cpp7 SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) { argument
9 fK[1] = k2;
39 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, argument
42 SkScalarMul(k2, src) +
60 SkScalar k2 = fK[1]; local
77 a = arith(k1, k2, k3, k4, sa, sa);
78 r = arith(k1, k2, k3, k4, SkGetPackedR32(sc), SkGetPackedR32(dc));
79 g = arith(k1, k2, k3, k4, SkGetPackedG32(sc), SkGetPackedG32(dc));
80 b = arith(k1, k2, k3, k4, SkGetPackedB32(sc), SkGetPackedB32(dc));
102 a = arith(k1, k2, k
153 Create(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) argument
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRDoubleKeyMap.h18 - (id) setObject:(id)v forKey1:(id)k1 forKey2:(NSString *)k2;
19 - (id) objectForKey1:(id)k1 forKey2:(id)k2;
/external/clang/test/CodeGenCXX/
H A Dstatic-data-member.cpp93 static const int k2 = 76; member in union:test5::U
99 const int U::k2; member in class:test5::U
H A Dvtable-layout-extreme.cpp28 int k2; member in class:Test1::C3
204 int k2; member in class:Test1::C9
/external/clang/test/PCH/
H A Dcxx11-enum-template.cpp22 int k2 = (int)decltype(b)::e; member in struct:S
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMapFauxverideShim.java67 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
/external/openssl/crypto/des/
H A Dofb64ede.c67 DES_key_schedule *k1, DES_key_schedule *k2,
94 DES_encrypt3(ti,k1,k2,k3);
121 DES_key_schedule k2, DES_cblock (*ivec), int *num)
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
H A Ddes_old.h138 #define des_ecb3_encrypt(i,o,k1,k2,k3,e)\
139 DES_ecb3_encrypt((i),(o),&(k1),&(k2),&(k3),(e))
140 #define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\
141 DES_ede3_cbc_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(e))
142 #define des_ede3_cbcm_encrypt(i,o,l,k1,k2,k3,iv1,iv2,e)\
143 DES_ede3_cbcm_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv1),(iv2),(e))
144 #define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\
145 DES_ede3_cfb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n),(e))
146 #define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\
147 DES_ede3_ofb64_encrypt((i),(o),(l),&(k1),&(k2),
[all...]
/external/openssl/crypto/des/t/
H A Dtest20 ($k1,$k2)=DES::string_to_2keys($str);
24 @a=split(//,$k2);
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_rdft.c151 const int k2 = 2 * k1; local
156 wk1r = rdft_w[k2 + 0];
157 wk1i = rdft_w[k2 + 1];
160 wk1r = rdft_w[k2 + 2];
161 wk1i = rdft_w[k2 + 3];
165 rdft_wk1r[k2 + 0] = rdft_w[k2 + 0];
166 rdft_wk1r[k2 + 1] = rdft_w[k2 + 0];
167 rdft_wk1r[k2
212 int j, k1, k2; local
318 int j0, j1, j2, j3, k, k1, k2, m2; local
504 int j1, j2, k1, k2; local
525 int j1, j2, k1, k2; local
[all...]
/external/aac/libSBRdec/src/
H A Dsbrdec_freq_sca.cpp167 UCHAR k2; local
195 k2 = diff1[stopFreq];
198 k2 = 2*k0;
200 k2 = 3*k0;
203 if (k2 > (64))
204 k2 = (64);
209 if ( ((k2 - k0) > MAX_FREQ_COEFFS) || (k2 <= k0) ) {
215 if ( (fs >= 42000) && ( (k2 - k0) > MAX_FREQ_COEFFS_FS44100 ) ) {
219 if ( (fs >= 46009) && ( (k2
258 UCHAR k0, k2, i; local
715 int k2,kx, lsb, usb; local
[all...]
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEComposite.cpp38 FEComposite::FEComposite(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4) argument
42 , m_k2(k2)
48 PassRefPtr<FEComposite> FEComposite::create(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4) argument
50 return adoptRef(new FEComposite(filter, type, k1, k2, k3, k4));
79 float FEComposite::k2() const function in class:WebCore::FEComposite
84 bool FEComposite::setK2(float k2) argument
86 if (m_k2 == k2)
88 m_k2 = k2;
120 float k1, float k2, float k3, float k4)
136 result += k2 * i
119 computeArithmeticPixels(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4) argument
153 arithmetic(ByteArray* srcPixelArrayA, ByteArray* srcPixelArrayB, float k1, float k2, float k3, float k4) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECFieldElement.java350 // * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
357 // * PPB: The integer <code>k2</code> where <code>x<sup>m</sup> +
358 // * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
361 // private int k2;
366 // * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
376 // * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
378 // * @param k2 The integer <code>k2</code> where <code>x<sup>m</sup> +
379 // * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
382 // * x<sup>k3</sup> + x<sup>k2</su
820 private int k2; field in class:ECFieldElement.F2m
855 F2m( int m, int k1, int k2, int k3, BigInteger x) argument
911 F2m(int m, int k1, int k2, int k3, IntArray x) argument
[all...]
/external/aac/libSBRenc/src/
H A Dsbrenc_freq_sca.h100 const INT k0, const INT k2,
125 INT *k2);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableBiMap.java43 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, v1, k2, v2, k3, v3, k4, v4, k5, v5));
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
/external/openssl/include/openssl/
H A Ddes_old.h138 #define des_ecb3_encrypt(i,o,k1,k2,k3,e)\
139 DES_ecb3_encrypt((i),(o),&(k1),&(k2),&(k3),(e))
140 #define des_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e)\
141 DES_ede3_cbc_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(e))
142 #define des_ede3_cbcm_encrypt(i,o,l,k1,k2,k3,iv1,iv2,e)\
143 DES_ede3_cbcm_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv1),(iv2),(e))
144 #define des_ede3_cfb64_encrypt(i,o,l,k1,k2,k3,iv,n,e)\
145 DES_ede3_cfb64_encrypt((i),(o),(l),&(k1),&(k2),&(k3),(iv),(n),(e))
146 #define des_ede3_ofb64_encrypt(i,o,l,k1,k2,k3,iv,n)\
147 DES_ede3_ofb64_encrypt((i),(o),(l),&(k1),&(k2),
[all...]

Completed in 587 milliseconds

12345