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

1 2 3

  /external/dropbear/libtommath/
bn_mp_toom_mul.c 27 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local
31 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4,
82 /* w1 = (a2 + 2(a1 + 2a0))(b2 + 2(b1 + 2b0)) */
109 if ((res = mp_mul(&tmp1, &tmp2, &w1)) != MP_OKAY) {
175 if ((res = mp_sub(&w1, &w4, &w1)) != MP_OKAY) {
183 if ((res = mp_div_2(&w1, &w1)) != MP_OKAY) {
198 if ((res = mp_sub(&w1, &w2, &w1)) != MP_OKAY)
    [all...]
bn_mp_toom_sqr.c 22 mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2; local
26 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) {
59 /* w1 = (a2 + 2(a1 + 2a0))**2 */
73 if ((res = mp_sqr(&tmp1, &w1)) != MP_OKAY) {
119 if ((res = mp_sub(&w1, &w4, &w1)) != MP_OKAY) {
127 if ((res = mp_div_2(&w1, &w1)) != MP_OKAY) {
142 if ((res = mp_sub(&w1, &w2, &w1)) != MP_OKAY)
    [all...]
  /external/chromium/chrome/browser/history/
query_parser_unittest.cc 142 const std::string w1; member in struct:TestData2
157 EXPECT_EQ(data[i].w1, UTF16ToUTF8(results[0]));
  /external/openfst/src/test/
weight-tester.h 42 Weight w1 = weight_generator_(); local
47 VLOG(1) << "w1 = " << w1;
51 TestSemiring(w1, w2, w3);
53 TestDivision(w1, w2);
54 TestReverse(w1, w2);
55 TestEquality(w1, w2, w3);
56 TestIO(w1);
57 TestCopy(w1);
66 void TestSemiring(Weight w1, Weight w2, Weight w3)
77 CHECK(Plus(Weight::Zero(), w1) == w1); local
79 CHECK(Times(Weight::One(), w1) == w1); local
    [all...]
  /external/quake/quake/src/QW/client/
net_chan.c 228 unsigned w1, w2; local
262 w1 = chan->outgoing_sequence | (send_reliable<<31);
267 MSG_WriteLong (&send, w1);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
random-weight.h 127 typedef typename G1::Weight W1;
129 typedef ProductWeight<W1, W2> Weight;
135 W1 w1 = generator1_(); local
137 return Weight(w1, w2);
product-weight.h 28 // Product semiring: W1 * W2
29 template<class W1, class W2>
32 typedef ProductWeight<typename W1::ReverseWeight, typename W2::ReverseWeight>
37 ProductWeight(W1 w1, W2 w2) : value1_(w1), value2_(w2) {}
39 static const ProductWeight<W1, W2> &Zero() {
40 static const ProductWeight<W1, W2> zero(W1::Zero(), W2::Zero());
44 static const ProductWeight<W1, W2> &One()
159 W1 w1 = W1::Zero(); local
160 strm1 >> w1; local
    [all...]
  /external/clang/test/SemaCXX/
default-assignment-operator.cpp 53 W w1, w2; variable
56 w1 = w2;
  /external/dropbear/libtomcrypt/src/ciphers/
skipjack.c 91 tmp = g_func(w1, &kp, skey->skipjack.key); \
92 w1 = tmp ^ w4 ^ x; \
97 tmp = g_func(w1, &kp, skey->skipjack.key); \
99 w3 = w1 ^ w2 ^ x; \
100 w1 = tmp1; w2 = tmp;
103 tmp = w1 ^ w2 ^ x; \
104 w1 = ig_func(w2, &kp, skey->skipjack.key); \
110 w3 = w4; w4 = w1; w1 = tmp;
149 unsigned w1,w2,w3,w4,tmp,tmp1 local
213 unsigned w1,w2,w3,w4,tmp; local
    [all...]
  /external/libvorbis/lib/
mdct.c 352 DATA_TYPE *w1 = x = w0+(n>>1); local
364 w1 -= 4;
370 w1[2] = r0 - r2;
372 w1[3] = r3 - r1;
386 w1[0] = r0 - r2;
388 w1[1] = r3 - r1;
394 }while(w0<w1);
  /external/openfst/src/include/fst/
random-weight.h 188 typedef typename G1::Weight W1;
196 W1 w1 = generator1_(); local
198 return Weight(w1, w2);
214 typedef typename G1::Weight W1;
216 typedef LexicographicWeight<W1, W2> Weight;
226 return Weight(W1::Zero(), W2::Zero());
228 W1 w1 = generator1_(); local
230 return Weight(w1, w2)
    [all...]
pair-weight.h 37 template<class W1, class W2> class PairWeight;
38 template <class W1, class W2>
39 istream &operator>>(istream &strm, PairWeight<W1, W2> &w);
41 template<class W1, class W2>
44 friend istream &operator>><W1, W2>(istream&, PairWeight<W1, W2>&);
46 typedef PairWeight<typename W1::ReverseWeight,
54 PairWeight(W1 w1, W2 w2) : value1_(w1), value2_(w2) {
132 W1 w1 = W1::Zero(); local
133 strm1 >> w1; local
181 W1 w1 = W1::Zero(); local
182 strm1 >> w1; local
    [all...]
  /external/srec/srec/cfront/
spec_anl.c 455 float w1 = x - l; local
456 float w2 = 1 - w1;
460 tmpbuf[i] = (int)(w1 * inbuf[u] + w2 * inbuf[l]);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
chvr_filter.cpp 40 int w1, w2, w3, w4; local
56 w1 = width; /* Offset to next row in pixels */
58 w3 = w1 + w2; /* Offset to three rows in pixels */
124 a3_0 = *ptr - *(ptr - w1);
131 ptr_n = ptr + w1; /* Points to pixel one row below */
134 v[2] = (int)(*(ptr_c - w1));
136 v[4] = (int)(*(ptr_c + w1));
151 ptr_c += w1;
162 ptr_c += w1;
163 ptr_n += w1;
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMonitorTest.java 386 Worker w1 = new Worker(0, 1); local
395 w1.start();
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsn.java 325 int w1 = addr.length(); local
326 int w2 = (width == 0) ? insnPerSe.length() : (width - w1);
328 return TwoColumnOutput.toString(addr, w1, "", insnPerSe, w2);
  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 252 int w1 = rawBytes ? (getWidth1() + 1) : 0; local
253 return width - w1 - (indent * 2);
276 int w1 = getWidth1(); local
280 if (w1 == 0) {
293 return TwoColumnOutput.toString(s1, w1, separator, s2, w2);
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsn.java 353 int w1 = addr.length(); local
354 int w2 = (width == 0) ? insnPerSe.length() : (width - w1);
356 return TwoColumnOutput.toString(addr, w1, "", insnPerSe, w2);
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsn.java 353 int w1 = addr.length(); local
354 int w2 = (width == 0) ? insnPerSe.length() : (width - w1);
356 return TwoColumnOutput.toString(addr, w1, "", insnPerSe, w2);
  /external/okhttp/src/main/java/libcore/net/spdy/
SpdyReader.java 86 int w1; local
88 w1 = in.readInt();
94 boolean control = (w1 & 0x80000000) != 0;
99 version = (w1 & 0x7fff0000) >>> 16;
100 type = (w1 & 0xffff);
120 streamId = w1 & 0x7fffffff;
126 int w1 = in.readInt(); local
129 streamId = w1 & 0x7fffffff;
137 int w1 = in.readInt(); local
139 streamId = w1 & 0x7fffffff
    [all...]
  /external/opencv/cv/src/
cvmatchcontours.cpp 231 double match_v, d12, area1, area2, r11, r12, r21, r22, w1, w2; local
284 r11 = r12 = r21 = r22 = w1 = w2 = d12 = 0;
314 w1 = ptr11[j]->area / area1;
343 t0 = fabs( r11 * w1 + r21 * w2 );
344 t1 = fabs( r12 * w1 + r22 * w2 );
348 t0 = fabs( r11 * w1 - r21 * w2 );
349 t1 = fabs( r12 * w1 - r22 * w2 );
  /external/opencv/cxcore/src/
cxdxt.cpp 227 CvComplex64f w, w1; local
357 w.re = w1.re = icvDxtTab[m][0];
358 w.im = w1.im = -icvDxtTab[m][1];
363 w.im = w1.im = sin(t);
364 w.re = w1.re = sqrt(1. - w1.im*w1.im);
387 t = w.re*w1.re - w.im*w1.im;
388 w.im = w.re*w1.im + w.im*w1.re
    [all...]
  /external/tremolo/Tremolo/
mdct.c 276 DATA_TYPE *w1 = x+(n>>1); local
282 w1 -= 2;
284 s0 = w0[0] + w1[0];
285 s1 = w1[1] - w0[1];
290 s0 = (w0[1] + w1[1])>>1;
291 s1 = (w0[0] - w1[0])>>1;
294 w1[0] = s0 - s2;
295 w1[1] = s3 - s1;
300 w1 -= 2;
302 s0 = w0[0] + w1[0]
    [all...]
  /external/valgrind/main/coregrind/m_replacemalloc/
vg_replace_malloc.c 146 UWord u1, v1, w1,w2,t; local
156 w1 = t & halfMask;
158 w1 = u0 * v1 + w1;
159 rHi = u1 * v1 + w2 + (w1 >> halfShift);
    [all...]
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/verbose/
WarningLevelFilter.java 63 w1, enum constant in enum:WarningLevelFilter.WarningLevel
212 else if (currentWarningLevel.equals(WarningLevel.w1)) // fatal errors only
392 else if (currentWarningLevel.equals(WarningLevel.w1))

Completed in 646 milliseconds

1 2 3