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

1 2

  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p17.cpp 13 void k2() { function
  /external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
p3-0x.cpp 15 float &k2 = g2(f1()); member in namespace:std_example
  /external/clang/test/CodeGenCXX/
vtable-layout-extreme.cpp 28 int k2; member in class:Test1::C3
204 int k2; member in class:Test1::C9
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x9/
X9Curve.java 69 int k2 = 0; local
84 k2 = ((DERInteger)pentanomial.getObjectAt(1)).getValue().
89 X9FieldElement x9A = new X9FieldElement(m, k1, k2, k3, (ASN1OctetString)seq.getObjectAt(0));
90 X9FieldElement x9B = new X9FieldElement(m, k1, k2, k3, (ASN1OctetString)seq.getObjectAt(1));
92 curve = new ECCurve.F2m(m, k1, k2, k3, x9A.getValue().toBigInteger(), x9B.getValue().toBigInteger());
  /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/clang/test/SemaCXX/
using-directive.cpp 48 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'A::K2'}}
51 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'K2'}}
57 struct K2 *k2; // expected-error{{reference to 'K2' is ambiguous}} variable in typeref:struct:K2
59 K2 *k3; // expected-error{{reference to 'K2' is ambiguous}}
67 struct K2;
    [all...]
  /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;
  /external/webkit/Source/WebCore/platform/audio/
SincResampler.cpp 177 float* k2 = k1 + m_kernelSize; local
197 sum2 += input * *k2; \
199 ++k2;
  /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...]
  /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...]
  /external/apache-xml/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());
  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
ECCurve.java 190 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
197 * PPB: The integer <code>k2</code> where <code>x<sup>m</sup> +
198 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
201 private int k2; // can't be final - JDK 1.1 field in class:ECCurve.F2m
206 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
295 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
297 * @param k2 The integer <code>k2</code> where <code>x<sup>m</sup> +
298 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code>
301 * x<sup>k3</sup> + x<sup>k2</sup> + x<sup>k1</sup> + 1</code
    [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...]
  /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++];
  /external/valgrind/main/perf/
ffbench.c 174 int ibit, idim, k1, k2, n, nprev, nrem, ntot; local
219 k2 = k1 + ifp1;
220 tempr = wr * data[k2] - wi * data[k2 + 1];
221 tempi = wr * data[k2 + 1] + wi * data[k2];
222 data[k2] = data[k1] - tempr;
223 data[k2 + 1] = data[k1 + 1] - tempi;
  /external/webrtc/src/modules/audio_processing/aec/main/source/
aec_rdft.c 147 int j, k1, k2; local
191 k2 = 2 * k1;
194 wk1r = rdft_w[k2];
195 wk1i = rdft_w[k2 + 1];
220 wk1r = rdft_w[k2 + 2];
221 wk1i = rdft_w[k2 + 3];
251 int j, j1, j2, j3, k, k1, k2, m, m2; local
307 k2 = 2 * k1;
310 wk1r = rdft_w[k2];
311 wk1i = rdft_w[k2 + 1]
438 int j1, j2, k1, k2; local
459 int j1, j2, k1, k2; local
    [all...]
aec_rdft_sse2.c 25 int j1, j2, k1, k2; local
72 // a[k2 + 0] += yr;
73 // a[k2 + 1] -= yi;
98 k2 = 128 - j2;
102 xr = a[j2 + 0] - a[k2 + 0];
103 xi = a[j2 + 1] + a[k2 + 1];
108 a[k2 + 0] += yr;
109 a[k2 + 1] -= yi;
115 int j1, j2, k1, k2; local
163 // a[k2 + 0] = yr + a[k2 + 0]
    [all...]
  /external/webrtc/src/modules/audio_processing/utility/
fft4g.c 1034 int j, k1, k2; local
1078 k2 = 2 * k1;
1081 wk1r = w[k2];
1082 wk1i = w[k2 + 1];
1107 wk1r = w[k2 + 2];
1108 wk1i = w[k2 + 3];
1139 int j, j1, j2, j3, k, k1, k2, m, m2; local
    [all...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_metrics.h 329 int k2=0; local
389 wp[k2]=wp[ind2];
390 wp[k2+1]=wp[ind2+1];
391 wp[k2+2]=wp[ind2+2];
392 wp[k2+3]=wp[ind2+3];
394 k2=k2+4;
db_utilities_camera.h 174 double k1,k2; local
177 k2=db_sqr(H[6])+db_sqr(H[7]);
178 if(k1>=k2)
184 return(db_SafeSqrt(db_SafeDivision(1.0-db_sqr(H[8]),k2)));
  /external/opencv/cv/src/
cvapprox.cpp 251 int k2 = current->k >> 1; local
256 for( j = 1; j <= k2; j++ )
271 if( j <= k2 ) /* exclude point */
  /external/opencv/ml/src/
mlknearest.cpp 153 int i, j, count = end - start, k1 = 0, k2 = 0, d = var_count; local
194 for( ii1 = k2 - 1; ii1 > ii; ii1-- )
206 k2 = MIN( k1, k-1 );

Completed in 4233 milliseconds

1 2