HomeSort by relevance Sort by last modified time
    Searched refs:k2 (Results 1 - 25 of 141) sorted by null

1 2 3 4 5 6

  /external/clang/test/CXX/class/class.union/
p2-0x.cpp 7 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/skia/include/effects/
SkArithmeticMode.h 16 * 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/guava/guava/src/com/google/common/hash/
Murmur3_128HashFunction.java 61 long k2 = bb.getLong(); local
63 bmix64(k1, k2);
66 private void bmix64(long k1, long k2) {
76 k2 *= c2;
77 k2 = Long.rotateLeft(k2, 33);
78 k2 *= c1;
79 h2 ^= k2;
88 long k2 = 0; local
92 k2 ^= (long) toInt(bb.get(14)) << 48; // fall throug
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct.cpp 41 Int k0, k1, k2, k3, k4, k5, k6, k7; local
65 k2 = mask & (tmp >> 7);
66 k1 = k2 - (k1 << 1);
67 k2 = (tmp2 >> 16) & 0xFF;
69 k2 = k3 - (k2 << 1);
95 k2 = k2 + k5;
96 k5 = k2 - (k5 << 1);
102 k1 = k1 + k2;
270 register Int k0, k1, k2, k3, k4, k5, k6, k7; local
476 register Int k0, k1, k2, k3, k4, k5, k6, k7; local
655 Int k0, k1, k2, k3, k4, k5, k6, k7; local
866 register Int k0, k1, k2, k3, k4, k5, k6, k7; local
1053 register Int k0, k1, k2, k3, k4, k5, k6, k7; local
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
math-partial-sums.js 9 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/
math-partial-sums.js 9 var k2 = k3 = sk = ck = 0.0;
12 k2 = k*k;
13 k3 = k2*k;
24 a7 += 1.0/k2;
  /external/openssh/
cipher-3des1.c 56 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, dest, dest, len)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
DoubleKeyMap.java 12 public Value put(Key1 k1, Key2 k2, Value v) {
20 prev = data2.get(k2);
22 data2.put(k2, v);
26 public Value get(Key1 k1, Key2 k2) {
29 return data2.get(k2);
55 for (Map<Key2, Value> k2 : data.values()) {
56 for (Value v : k2.values()) {
  /external/skia/src/effects/
SkArithmeticMode.cpp 7 SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4) {
9 fK[1] = k2;
39 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4,
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, k3, k4, sa, sa)
    [all...]
  /packages/apps/Gallery2/jni/filters/
hsv.c 39 int k2=HSCALE << ABITS; local
69 rh = (short)( (k2*(6*chroma+gi - bi))/(6*chroma));
70 if (rh >= k2) rh -= k2;
72 rh = (short)( (k2*(2*chroma+bi - ri ))/(6*chroma));
74 rh = (short)( (k2*(4*chroma+ri - gi ))/(6*chroma));
88 int k2=HSCALE<<ABITS; local
110 H = (6*ih)/k2;
111 X = ((iv*is)/k2)*(k2- abs(6*ih- 2*(H>>1)*k2 - k2))
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDoubleKeyMap.h 18 - (id) setObject:(id)v forKey1:(id)k1 forKey2:(NSString *)k2;
19 - (id) objectForKey1:(id)k1 forKey2:(id)k2;
  /external/clang/test/CodeGenCXX/
static-data-member.cpp 93 static const int k2 = 76; member in union:test5::U
99 const int U::k2; member in class:test5::U
vtable-layout-extreme.cpp 28 int k2; member in class:Test1::C3
204 int k2; member in class:Test1::C9
  /external/guava/guava/src/com/google/common/collect/
ImmutableSortedMapFauxverideShim.java 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) {
  /external/openssl/crypto/des/
ofb64ede.c 67 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);
des_old.h 138 #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),&(k3),(iv),(n)
    [all...]
  /external/openssl/crypto/des/t/
test 20 ($k1,$k2)=DES::string_to_2keys($str);
24 @a=split(//,$k2);
  /external/webrtc/src/modules/audio_processing/aec/
aec_rdft.c 151 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 + 2] = rdft_w[k2 + 2]
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/
sbrdec_freq_sca.cpp 167 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 - k0) > MAX_FREQ_COEFFS_FS48000 ) )
258 UCHAR k0, k2, i; local
715 int k2,kx, lsb, usb; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEComposite.cpp 38 FEComposite::FEComposite(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4)
42 , m_k2(k2)
48 PassRefPtr<FEComposite> FEComposite::create(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4)
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)
86 if (m_k2 == k2)
88 m_k2 = k2;
120 float k1, float k2, float k3, float k4)
136 result += k2 * i1
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECFieldElement.java 350 // * 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</sup> + x<sup>k1</sup> + 1</code
820 private int k2; field in class:ECFieldElement.F2m
    [all...]
  /external/aac/libSBRenc/src/
sbrenc_freq_sca.h 100 const INT k0, const INT k2,
125 INT *k2);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableBiMap.java 43 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) {
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));
  /external/openssl/include/openssl/
des_old.h 138 #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),&(k3),(iv),(n)
    [all...]
  /external/clang/test/PCH/
cxx11-enum-template.cpp 22 int k2 = (int)decltype(b)::e; member in struct:S

Completed in 791 milliseconds

1 2 3 4 5 6