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

1 2 3 4

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
weight.h 132 bool operator()(const W &w1, const W &w2) const {
133 return (Plus(w1, w2) == w1) && w1 != w2;
float-weight.h 68 inline bool operator==(const FloatWeight &w1, const FloatWeight &w2) {
71 volatile float v1 = w1.Value();
76 inline bool operator!=(const FloatWeight &w1, const FloatWeight &w2) {
77 return !(w1 == w2);
80 inline bool ApproxEqual(const FloatWeight &w1, const FloatWeight &w2,
82 return w1.Value() <= w2.Value() + delta && w2.Value() <= w1.Value() + delta;
152 inline TropicalWeight Plus(const TropicalWeight &w1,
154 return w1.Value() < w2.Value() ? w1 : w2
    [all...]
string-weight.h 288 inline bool operator==(const StringWeight<L, S> &w1,
290 if (w1.Size() != w2.Size())
293 StringWeightIterator<L, S> iter1(w1);
304 inline bool operator!=(const StringWeight<L, S> &w1,
306 return !(w1 == w2);
310 inline bool ApproxEqual(const StringWeight<L, S> &w1,
313 return w1 == w2;
362 Plus(const StringWeight<L, S> &w1,
364 if (w1 == StringWeight<L, S>::Zero())
367 return w1;
    [all...]
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...]
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);
determinize.h 51 W operator()(const W &w1, const W &w2) const { return Plus(w1, w2); }
64 Weight operator()(const Weight &w1, const Weight &w2) const {
65 StringWeightIterator<L, S> iter1(w1);
71 if (w1.Size() == 0 || w2.Size() == 0)
73 else if (w1 == Weight::Zero())
93 Weight operator()(const Weight &w1, const Weight &w2) const {
94 return Weight(label_common_divisor_(w1.Value1(), w2.Value1()),
95 weight_common_divisor_(w1.Value2(), w2.Value2()));
  /bionic/libc/arch-arm/bionic/
strcmp.S 140 w1 .req r4
167 ldr w1, [wp1], #4
176 bic t1, w1, #MSB
178 sub r3, w1, b1
179 bic r3, r3, w1
185 eor t1, t1, w1
188 ldr w1, [wp1], #4
199 tst w1, #0xff000000
201 tstne w1, #0x00ff0000
202 tstne w1, #0x0000ff0
    [all...]
  /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...]
  /frameworks/base/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...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
esc_iquant_scaling.cpp 193 w1 = inverseQuantTable[index];
195 approxOneThird = (w1 * FACTOR) >> shift;
201 deltaOneThird = (w2 - w1) * (absX - x1);
449 UInt32 w1, w2; local
553 w1 = inverseQuantTable[index];
555 approxOneThird = (w1 * FACTOR) >> shift;
557 deltaOneThird = (w2 - w1) * (absX - x1);
579 w1 = inverseQuantTable[index];
581 approxOneThird = (w1 * FACTOR) >> shift;
583 deltaOneThird = (w2 - w1) * (absX - x1)
    [all...]
  /external/chromium/net/websockets/
websocket_throttle_unittest.cc 86 scoped_refptr<WebSocketJob> w1(new WebSocketJob(&delegate));
88 new SocketStream(GURL("ws://host1/"), w1.get()));
89 w1->InitSocketStream(s1.get());
96 EXPECT_EQ(OK, w1->OnStartOpenConnection(s1, &callback_s1));
100 // 1.2.3.4 | w1
101 // 1.2.3.5 | w1
102 // 1.2.3.6 | w1
115 // Trying to open connection to host2 will wait for w1.
119 // 1.2.3.4 | w1 w2
120 // 1.2.3.5 | w1
    [all...]
  /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/tremolo/Tremolo/
mdct.h 62 LOOKUP_T *w0,LOOKUP_T *w1,
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/clang/test/SemaCXX/
default-assignment-operator.cpp 53 W w1, w2; variable
56 w1 = 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);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 71 int appendSlot(int w0, int w1, int w2, int w3)
78 fastArray[newoffset+1] = w1;
96 chunk[slotpos+1] = w1;
217 * @param w1 int
221 void writeSlot(int position, int w0, int w1, int w2, int w3)
232 chunk[slotpos + 1] = w1;
DTMDocumentImpl.java 200 * @param w1 int As in ChunkedIntArray.append
206 private final int appendNode(int w0, int w1, int w2, int w3)
209 int slotnumber = nodes.appendSlot(w0, w1, w2, w3);
211 if (DEBUG) System.out.println(slotnumber+": "+w0+" "+w1+" "+w2+" "+w3);
692 // // W1: Parent
693 // int w1 = currentParent;
698 // //int ourslot = nodes.appendSlot(w0, w1, w2, w3);
699 // int ourslot = appendNode(w0, w1, w2, w3);
849 // // W1: Parent
850 // int w1 = currentParent
2097 int w1 = currentParent; local
2120 int w1 = currentParent; local
2156 int w1 = currentParent; local
2203 int w1 = currentParent; local
2240 int w1 = currentParent; local
    [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 );
_cvmatrix.h 283 CV_INLINE void icvMulMatrix_32f( const float* src1, int w1, int h1,
289 if( w1 != h2 )
295 for( i = 0; i < h1; i++, src1 += w1, dst += w2 )
299 for( k = 0; k < w1; k++ )
308 CV_INLINE void icvMulMatrix_64d( const double* src1, int w1, int h1,
314 if( w1 != h2 )
320 for( i = 0; i < h1; i++, src1 += w1, dst += w2 )
324 for( k = 0; k < w1; k++ )
  /external/opencv/cvaux/src/
cvmorphcontours.cpp 384 double w1,w2; local
388 w1 = W[i-1][j].w_east /*+ _cvBendingWork( &edges1[i-2],
403 if(w1<w2)
405 W[i][j].w_east = w1 + _cvStretchingWork( &edges1[i-1], &null_edge );
422 double w1,w2,w3; local
429 w1 = W[i-1][j-1].w_east + _cvBendingWork(&edges1[i-2],
450 if( w1<w2 )
452 if(w1<w3)
454 W[i][j].w_southeast = w1 + _cvStretchingWork( &edges1[i-1], &edges2[j-1] );
482 double w1,w2 local
    [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/sonivox/arm-wt-22k/lib_src/
eas_mdls.h 59 #define DEFINE_DLSID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) const DLSID name = { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
  /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);

Completed in 668 milliseconds

1 2 3 4