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

1 2

  /external/openfst/src/include/fst/
lexicographic-weight.h 39 template<class W1, class W2>
40 class LexicographicWeight : public PairWeight<W1, W2> {
42 using PairWeight<W1, W2>::Value1;
43 using PairWeight<W1, W2>::Value2;
44 using PairWeight<W1, W2>::SetValue1;
45 using PairWeight<W1, W2>::SetValue2;
46 using PairWeight<W1, W2>::Zero;
47 using PairWeight<W1, W2>::One;
48 using PairWeight<W1, W2>::NoWeight;
49 using PairWeight<W1, W2>::Quantize
    [all...]
product-weight.h 33 // Product semiring: W1 * W2
34 template<class W1, class W2>
35 class ProductWeight : public PairWeight<W1, W2> {
37 using PairWeight<W1, W2>::Zero;
38 using PairWeight<W1, W2>::One;
39 using PairWeight<W1, W2>::NoWeight;
40 using PairWeight<W1, W2>::Quantize;
41 using PairWeight<W1, W2>::Reverse;
43 typedef ProductWeight<typename W1::ReverseWeight, typename W2::ReverseWeight>
48 ProductWeight(const PairWeight<W1, W2>& w) : PairWeight<W1, W2>(w) {
    [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...]
weight.h 142 bool operator()(const W &w1, const W &w2) const {
143 return (Plus(w1, w2) == w1) && w1 != w2;
162 template <class W1, class W2>
164 W2 operator()(W1 w1) const {
166 << W1::Type() << "\" to \"" << W2::Type();
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...]
expectation-weight.h 58 typedef X1 W1;
109 uint64 props1 = W1::Properties();
arc.h 163 template<class W1, class W2>
166 typedef LexicographicWeight<W1, W2> Weight;
187 template<class W1, class W2>
190 typedef ProductWeight<W1, W2> Weight;
signed-log-weight.h 108 inline SignedLogWeightTpl<T> Plus(const SignedLogWeightTpl<T> &w1,
110 if (!w1.Member() || !w2.Member())
112 bool s1 = w1.Value1().Value() > 0.0;
114 T f1 = w1.Value2().Value();
119 return w1;
122 return SignedLogWeightTpl<T>(w1.Value1(), (f2 - log(2.0F)));
128 w1.Value1(), (f2 - log(1.0F + exp(f2 - f1))));
139 w1.Value1(), (f1 - log(1.0F - exp(f1 - f2))));
145 inline SignedLogWeightTpl<T> Minus(const SignedLogWeightTpl<T> &w1,
148 return Plus(w1, minus_w2)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
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);
  /external/dropbear/libtommath/
bn_fast_s_mp_sqr.c 32 mp_word W1;
43 W1 = 0;
77 _W = _W + _W + W1;
88 W1 = _W >> ((mp_word)DIGIT_BIT);
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_iconv.c 440 Uint16 W1, W2;
444 W1 = ((Uint16)p[0] << 8) |
448 if ( W1 < 0xD800 || W1 > 0xDFFF ) {
449 ch = (Uint32)W1;
452 if ( W1 > 0xDBFF ) {
474 ch = (((Uint32)(W1 & 0x3FF) << 10) |
481 Uint16 W1, W2;
485 W1 = ((Uint16)p[1] << 8) |
489 if ( W1 < 0xD800 || W1 > 0xDFFF )
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/util/
Strings.java 49 char W1 = (char)(0xD800 | (U >> 10));
51 cs[length++] = W1;
116 char W1 = ch;
121 if (W1 > 0xDBFF)
125 int codePoint = (((W1 & 0x03FF) << 10) | (W2 & 0x03FF)) + 0x10000;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
idct.cpp 183 r4 = (r8 + (W1 - W7) * r4);
186 r5 = (r8 - (W1 + W7) * r5);
235 /* scale as that of coefficients (W1,...W7) */
275 r4 = (r8 + (W1 - W7) * r4) >> 3;
276 r5 = (r8 - (W1 + W7) * r5) >> 3;
406 r4 = (r8 + (W1 - W7) * r4);
409 r5 = (r8 - (W1 + W7) * r5);
458 /* scale as that of coefficients (W1,...W7) */
496 r4 = (r8 + (W1 - W7) * r4) >> 3;
497 r5 = (r8 - (W1 + W7) * r5) >> 3
    [all...]
idct.h 75 #define W1 2841 /* 2048*sqrt(2)*cos(1*pi/16) */
89 /* for the transform coefficients (W1,...W7) */
idct_vca.cpp 120 x4 = (W1 * x4 + 4) >> 3;
167 x1 = W1 * x1;
220 x1 = (W1 * x1 + 4) >> 3;
276 x1 = W1 * x1;
329 x1 = (W1 * x1 + 4) >> 3;
390 x1 = W1 * x1;
466 x4 = (W1 * x4 + 4) >> 3;
536 x1 = (W1 * x1 + 4) >> 3;
609 x1 = (W1 * x1 + 4) >> 3;
block_idct.cpp 558 x4 = (x8 + (W1 - W7) * x4) >> 3;
559 x5 = (x8 - (W1 + W7) * x5) >> 3;
670 x4 = (x8 + (W1 - W7) * x4) >> 3;
671 x5 = (x8 - (W1 + W7) * x5) >> 3;
869 x4 = x8 + (W1 - W7) * x4;
870 x5 = x8 - (W1 + W7) * x5;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastidct.cpp 88 x1 = W1 * x1;
124 x1 = W1 * x1;
159 x1 = W1 * x1;
191 x1 = W1 * x1;
274 x4 = x8 + (W1 - W7) * x4;
275 x5 = x8 - (W1 + W7) * x5;
392 x4 = (W1 * x4 + 4) >> 3;
463 x1 = (W1 * x1 + 4) >> 3;
533 x1 = (W1 * x1 + 4) >> 3;
595 x4 = (W1 * x4 + 4) >> 3
    [all...]
dct.h 38 #define W1 2841 /* 2048*sqrt(2)*cos(1*pi/16) */
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 158 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
163 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
libtommath.c     [all...]
  /external/wpa_supplicant_8/src/tls/
libtommath.c     [all...]
  /external/elfutils/libcpu/
i386_parse.c     [all...]
  /external/opencv/cv/src/
cvcalibration.cpp 416 CvMat W1 = cvMat(3,9,CV_64F,_W1), W2 = cvMat(3,3,CV_64F,_W2);
428 cvMatMul( &dr3dR3, &dR3dR1, &W1 );
429 cvMatMul( &W1, &dR1dr1, &W2 );
435 cvMatMul( &dr3dR3, &dR3dR2, &W1 );
436 cvMatMul( &W1, &dR2dr2, &W2 );
    [all...]
  /external/opencv/cvaux/src/
cvtrifocal.cpp 1469 double x1,y1,w1,x2,y2,w2; local
    [all...]

Completed in 2850 milliseconds

1 2