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

1 2

  /external/dropbear/libtomcrypt/src/ciphers/
kseed.c 188 #define F(L1, L2, R1, R2, K1, K2) \
189 T2 = G((R1 ^ K1) ^ (R2 ^ K2)); \
205 ulong32 tmp, k1, k2, k3, k4; local
217 LOAD32H(k2, key+4);
223 skey->kseed.K[2*i+1] = G(k2 - k4 + KCi[i]);
230 k1 = ((k1 >> 8) | (k2 << 24)) & 0xFFFFFFFF;
231 k2 = ((k2 >> 8) | (tmp << 24)) & 0xFFFFFFFF;
  /external/webkit/WebCore/platform/graphics/filters/
FEComposite.cpp 36 const float& k1, const float& k2, const float& k3, const float& k4)
42 , m_k2(k2)
49 const float& k1, const float& k2, const float& k3, const float& k4)
51 return adoptRef(new FEComposite(in, in2, type, k1, k2, k3, k4));
74 float FEComposite::k2() const function in class:WebCore::FEComposite
79 void FEComposite::setK2(float k2)
81 m_k2 = k2;
105 float k1, float k2, float k3, float k4)
114 double result = scaledK1 * i1 * i2 + k2 * i1 + k3 * i2 + scaledK4;
  /external/freetype/src/base/
fttrigon.c 68 FT_UInt32 v1, v2, k1, k2, hi, lo1, lo2, lo3; local
78 k2 = (FT_UInt32)(FT_TRIG_SCALE & 0xFFFFL); /* constant */
81 lo1 = k1 * v2 + k2 * v1; /* can't overflow */
83 lo2 = ( k2 * v2 ) >> 16;
  /frameworks/base/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...]
dct_inline.h 82 __inline int32 sum_abs(int32 k0, int32 k1, int32 k2, int32 k3,
91 carry = k2 >> 31;
92 abs_sum += (k2 ^ carry) - carry;
241 __inline int32 sum_abs(int32 k0, int32 k1, int32 k2, int32 k3,
250 eors carry, k2, k2, asr #31 ; local
347 __inline int32 sum_abs(int32 k0, int32 k1, int32 k2, int32 k3,
354 register int32 cc = (int32)k2;
motion_comp.cpp 1910 Int k1 = lx - MB_SIZE, k2 = lx_uv - B_SIZE; local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
EntryTest.java 21 static final String k2 = "2"; field in class:EntryTest
88 Map.Entry e = new AbstractMap.SimpleEntry(k2, v1);
92 e = new AbstractMap.SimpleEntry(k2, v2);
96 Map.Entry s = new AbstractMap.SimpleImmutableEntry(k2, v1);
100 s = new AbstractMap.SimpleImmutableEntry(k2, v2);
113 e.setValue(k2);
114 assertEquals(k2, e.getValue());
127 s.setValue(k2);
  /external/chromium/third_party/icu/source/test/intltest/
thcoll.cpp 169 CollationKey k1, k2; local
171 coll->getCollationKey(word, k2, status);
177 msg.append("key2: ").append(prettify(k2, str));
288 CollationKey k1, k2;
290 c.getCollationKey(s2, k2, status);
296 errln((UnicodeString)" key2: " + prettify(k2, t2) );
301 CollationKey k1, k2;
303 c.getCollationKey(s2, k2, status);
309 result = k1.compareTo(k2);
317 errln((UnicodeString)" " + prettify(k1, t1) + " vs. " + prettify(k2, t2))
    [all...]
loctest.cpp 1629 StringEnumeration *k2 = keywords->clone(); local
    [all...]
  /external/dropbear/
common-kex.c 228 unsigned char k2[SHA1_HASH_SIZE]; /* used to extending */ local
238 sha1_done(&hs2, k2);
239 memcpy(&out[SHA1_HASH_SIZE], k2, outlen - SHA1_HASH_SIZE);
  /external/icu4c/test/intltest/
thcoll.cpp 169 CollationKey k1, k2; local
171 coll->getCollationKey(word, k2, status);
177 msg.append("key2: ").append(prettify(k2, str));
288 CollationKey k1, k2;
290 c.getCollationKey(s2, k2, status);
296 errln((UnicodeString)" key2: " + prettify(k2, t2) );
301 CollationKey k1, k2;
303 c.getCollationKey(s2, k2, status);
309 result = k1.compareTo(k2);
317 errln((UnicodeString)" " + prettify(k1, t1) + " vs. " + prettify(k2, t2))
    [all...]
loctest.cpp 1633 StringEnumeration *k2 = keywords->clone(); local
    [all...]
  /external/tremolo/Tremolo/
floor1.c 84 int k2=mid; local
86 while(k1<mid && k2<end){
87 if(vals[A[k1]]<vals[A[k2]])
90 B[j++]=A[k2++];
93 while(k2<end) B[j++]=A[k2++];
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
NodeSorter.java 531 NodeSortKey k2 = (NodeSortKey) m_keys.elementAt(1); local
533 XObject r2 = k2.m_selectPat.execute(m_execContext, node,
534 k2.m_namespaceContext);
536 if (k2.m_treatAsNumbers) {
540 m_key2Value = k2.m_col.getCollationKey(r2.str());
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
OMX_Mp3Decoder.c 1723 int k=0, k2 = 0; local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
TwofishEngine.java 390 int k2 = sBoxKeys[2]; local
411 b0 = (P[P_03][b0] & 0xff) ^ b0(k2);
412 b1 = (P[P_13][b1] & 0xff) ^ b1(k2);
413 b2 = (P[P_23][b2] & 0xff) ^ b2(k2);
414 b3 = (P[P_33][b3] & 0xff) ^ b3(k2);
528 int k2 = k32[2]; local
546 b0 = (P[P_03][b0] & 0xff) ^ b0(k2);
547 b1 = (P[P_13][b1] & 0xff) ^ b1(k2);
548 b2 = (P[P_23][b2] & 0xff) ^ b2(k2);
549 b3 = (P[P_33][b3] & 0xff) ^ b3(k2);
    [all...]
  /external/openssl/crypto/des/
des.c 371 DES_cblock kk,k2; local
427 k2[i-8]=k;
429 DES_set_key_unchecked(&k2,&ks2);
430 OPENSSL_cleanse(k2,sizeof(k2));
436 DES_string_to_2keys(key,&kk,&k2);
437 DES_set_key_unchecked(&k2,&ks2);
438 OPENSSL_cleanse(k2,sizeof(k2));
676 OPENSSL_cleanse(k2,sizeof(k2))
    [all...]
  /external/openssl/crypto/ec/
ec_asn1.c 106 unsigned int *k2, unsigned int *k3)
120 if (k2)
121 *k2 = group->poly[2];
133 long k2; member in struct:x9_62_pentanomial_st
201 ASN1_SIMPLE(X9_62_PENTANOMIAL, k2, LONG),
394 unsigned int k1, k2, k3; local
396 if (!EC_GROUP_get_pentanomial_basis(group, &k1, &k2, &k3))
408 char_two->p.ppBasis->k2 = (long)k2;
838 if (!(char_two->m > penta->k3 && penta->k3 > penta->k2 && penta->k2 > penta->k1 && penta->k1 > 0)
    [all...]
  /external/srec/srec/cfront/
sp_fft.c 427 unsigned k1, k2, k3; local
433 k2 = k1 + quarterLength;
434 k3 = k2 + quarterLength;
438 r2 = data[k2];
442 i2 = data[k2+1];
468 data[k2] = r2;
469 data[k2+1] = -i2;
475 complex_multiplier(cc1, -ss1, r2, -i2, data + k2, data + k2 + 1);
  /external/tcpdump/
print-eigrp.c 112 u_int8_t k2; member in struct:eigrp_tlv_general_parm_t
305 printf("\n\t holdtime: %us, k1 %u, k2 %u, k3 %u, k4 %u, k5 %u",
308 tlv_ptr.eigrp_tlv_general_parm->k2,
  /frameworks/base/services/camera/libcameraservice/
FakeCamera.cpp 54 * G = ( Y - k1*Cr - k2*Cb )
62 static const double k2 = 0.391; member in namespace:android
68 * G + k1/k3*R + k2/k4*B = Y*( 1 + k1/k3 + k2/k4 )
70 * Y = ( G + k1/k3*R + k2/k4*B ) / (1 + k1/k3 + k2/k4)
71 * Y0 = ( G0 + k1/k3*R0 + k2/k4*B0 ) / ((1 + k1/k3 + k2/k4)*k0) + 16
75 * kYb = k2/k4
84 static const double kYb = k2/k4
    [all...]
  /external/chromium/net/http/
http_auth_handler_ntlm_portable.cc 273 uint8 k1[8], k2[8]; local
275 DESMakeKey(reinterpret_cast<const uint8*>(passbuf.data()) + 7, k2);
280 DESEncrypt(k2, LM_MAGIC, hash + 8);
320 uint8 keybytes[21], k1[8], k2[8], k3[8]; local
326 DESMakeKey(keybytes + 7, k2);
330 DESEncrypt(k2, challenge, response + 8);
  /external/icu4c/test/cintltst/
capitst.c 861 uint8_t *k1, *k2; local
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
capitst.c 851 uint8_t *k1, *k2; local
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
PinyinIME.java 1418 float k2 = Math.abs(kX) + Math.abs(kY); local
    [all...]

Completed in 780 milliseconds

1 2