Searched defs:w2 (Results 1 - 25 of 74) sorted by relevance

123

/external/libunwind/src/hppa/
H A DGis_signal_frame.c33 unw_word_t w0, w1, w2, w3, ip; local
60 || (ret = (*a->access_mem) (as, ip + 8, &w2, 0, arg)) < 0
67 && w1 == 0x3414015a && w2 == 0xe4008200 && w3 == 0x08000240);
/external/libunwind/src/x86_64/
H A DGos-freebsd.c41 unw_word_t w0, w1, w2, b0, ip; local
64 || (ret = (*a->access_mem) (as, ip + 16, &w2, 0, arg)) < 0)
66 w2 &= 0xffffff;
69 w2 == 0x0000000000fdebf4)
/external/openfst/src/include/fst/
H A Dlexicographic-weight.h61 LexicographicWeight(W1 w1, W2 w2) : PairWeight<W1, W2>(w1, w2) { argument
H A Dproduct-weight.h50 ProductWeight(W1 w1, W2 w2) : PairWeight<W1, W2>(w1, w2) {} argument
H A Dpower-weight.h100 const PowerWeight<W, n> &w2) {
103 w.SetValue(i, Plus(w1.Value(i), w2.Value(i)));
110 const PowerWeight<W, n> &w2) {
113 w.SetValue(i, Times(w1.Value(i), w2.Value(i)));
120 const PowerWeight<W, n> &w2,
124 w.SetValue(i, Divide(w1.Value(i), w2.Value(i), type));
149 const PowerWeight<W, n> &w2) {
152 w = Plus(w, Times(w1.Value(i), w2.Value(i)));
99 Plus(const PowerWeight<W, n> &w1, const PowerWeight<W, n> &w2) argument
109 Times(const PowerWeight<W, n> &w1, const PowerWeight<W, n> &w2) argument
119 Divide(const PowerWeight<W, n> &w1, const PowerWeight<W, n> &w2, DivideType type = DIVIDE_ANY) argument
148 DotProduct(const PowerWeight<W, n> &w1, const PowerWeight<W, n> &w2) argument
H A Drandom-weight.h197 W2 w2 = generator2_(); local
198 return Weight(w1, w2);
229 W2 w2 = generator2_(); local
230 return Weight(w1, w2);
H A Dpair-weight.h54 PairWeight(W1 w1, W2 w2) : value1_(w1), value2_(w2) {} argument
136 W2 w2 = W2::Zero(); local
137 strm >> w2; local
139 w = PairWeight<W1, W2>(w1, w2);
199 W2 w2 = W2::Zero(); local
200 strm2 >> w2; local
202 w = PairWeight<W1, W2>(w1, w2);
220 const PairWeight<W1, W2> &w2) {
221 return w1.Value1() != w2
219 operator !=(const PairWeight<W1, W2> &w1, const PairWeight<W1, W2> &w2) argument
226 ApproxEqual(const PairWeight<W1, W2> &w1, const PairWeight<W1, W2> &w2, float delta = kDelta) argument
[all...]
H A Dsigned-log-weight.h109 const SignedLogWeightTpl<T> &w2) {
110 if (!w1.Member() || !w2.Member())
113 bool s2 = w2.Value1().Value() > 0.0;
115 T f2 = w2.Value2().Value();
117 return w2;
131 w2.Value1(), (f2 - log(1.0F - exp(f2 - f1))));
136 w2.Value1(), (f1 - log(1.0F + exp(f1 - f2))));
146 const SignedLogWeightTpl<T> &w2) {
147 SignedLogWeightTpl<T> minus_w2(-w2.Value1().Value(), w2
108 Plus(const SignedLogWeightTpl<T> &w1, const SignedLogWeightTpl<T> &w2) argument
145 Minus(const SignedLogWeightTpl<T> &w1, const SignedLogWeightTpl<T> &w2) argument
152 Times(const SignedLogWeightTpl<T> &w1, const SignedLogWeightTpl<T> &w2) argument
167 Divide(const SignedLogWeightTpl<T> &w1, const SignedLogWeightTpl<T> &w2, DivideType typ = DIVIDE_ANY) argument
189 ApproxEqual(const SignedLogWeightTpl<T> &w1, const SignedLogWeightTpl<T> &w2, float delta = kDelta) argument
203 operator ==(const SignedLogWeightTpl<T> &w1, const SignedLogWeightTpl<T> &w2) argument
[all...]
H A Dsparse-power-weight.h151 const SparsePowerWeight<W, K> &w2) {
154 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
161 const SparsePowerWeight<W, K> &w2) {
164 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
171 const SparsePowerWeight<W, K> &w2,
175 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
182 const SparsePowerWeight<W, K> &w2) {
183 const SparsePowerWeight<W, K>& product = Times(w1, w2);
193 const SparsePowerWeight<W, K> &w2,
197 SparseTupleWeightMap(&ret, w1, w2, operator_mappe
150 Plus(const SparsePowerWeight<W, K> &w1, const SparsePowerWeight<W, K> &w2) argument
160 Times(const SparsePowerWeight<W, K> &w1, const SparsePowerWeight<W, K> &w2) argument
170 Divide(const SparsePowerWeight<W, K> &w1, const SparsePowerWeight<W, K> &w2, DivideType type = DIVIDE_ANY) argument
181 DotProduct(const SparsePowerWeight<W, K> &w1, const SparsePowerWeight<W, K> &w2) argument
192 ApproxEqual(const SparsePowerWeight<W, K> &w1, const SparsePowerWeight<W, K> &w2, float delta = kDelta) argument
202 Times(const W &k, const SparsePowerWeight<W, K> &w2) argument
[all...]
H A Dtuple-weight.h247 const TupleWeight<W, n> &w2) {
250 equal = equal && (w1.Value(i) == w2.Value(i));
256 const TupleWeight<W, n> &w2) {
259 not_equal = not_equal || (w1.Value(i) != w2.Value(i));
265 const TupleWeight<W, n> &w2,
270 ApproxEqual(w1.Value(i), w2.Value(i), delta);
246 operator ==(const TupleWeight<W, n> &w1, const TupleWeight<W, n> &w2) argument
255 operator !=(const TupleWeight<W, n> &w1, const TupleWeight<W, n> &w2) argument
264 ApproxEqual(const TupleWeight<W, n> &w1, const TupleWeight<W, n> &w2, float delta = kDelta) argument
H A Dfactor-weight.h110 StringWeight<L, S> w2; local
112 w2.PushBack(iter.Value());
113 return make_pair(w1, w2);
138 GallicWeight<L, W, S> w2(iter.Value().second, W::One());
139 return make_pair(w1, w2);
/external/openfst/src/test/
H A Dweight-tester.h43 Weight w2 = weight_generator_(); local
48 VLOG(1) << "w2 = " << w2;
51 TestSemiring(w1, w2, w3);
53 TestDivision(w1, w2);
54 TestReverse(w1, w2);
55 TestEquality(w1, w2, w3);
66 void TestSemiring(Weight w1, Weight w2, Weight w3) { argument
68 CHECK(Plus(w1, w2).Member());
69 CHECK(Times(w1, w2)
129 TestDivision(Weight w1, Weight w2) argument
156 TestReverse(Weight w1, Weight w2) argument
168 TestEquality(Weight w1, Weight w2, Weight w3) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DChunkedIntArray.java71 int appendSlot(int w0, int w1, int w2, int w3) argument
79 fastArray[newoffset+2] = w2;
97 chunk[slotpos+2] = w2;
218 * @param w2 int
221 void writeSlot(int position, int w0, int w1, int w2, int w3) argument
233 chunk[slotpos + 2] = w2;
/external/clang/test/Analysis/inlining/
H A Dcontainers.cpp44 void testWrappers(BeginOnlySet &w1, IteratorStructOnlySet &w2, argument
58 clang_analyzer_eval(w2.start().impl == w2.start().impl);
/external/clang/test/Headers/
H A Dstddefneeds.cpp24 wint_t w2; // expected-error{{unknown}} variable
/external/clang/test/SemaCXX/
H A Ddefault-assignment-operator.cpp53 W w1, w2; variable
56 w1 = w2;
/external/libunwind/src/x86/
H A DGos-freebsd.c42 unw_word_t w0, w1, w2, w3, w4, w5, ip; local
80 (*a->access_mem) (as, ip + 8, &w2, 0, arg) < 0 ||
83 if (w0 == 0x2024448d && w1 == 0x01a1b850 && w2 == 0xcd500000 &&
90 if (w0 == 0x2024448d && w1 == 0x5440f750 && w2 == 0x75000200 &&
/external/clang/test/Analysis/
H A Darray-struct-region.c308 ShortStringWrapper w2 = w; local
309 clang_analyzer_eval(w2.str.data[0] == 'a'); // expected-warning{{TRUE}}
310 clang_analyzer_eval(w2.str.data[1] == 'b'); // expected-warning{{TRUE}}
311 clang_analyzer_eval(w2.str.data[2] == 'c'); // expected-warning{{TRUE}}
312 clang_analyzer_eval(w2.length == 0); // expected-warning{{TRUE}}
314 ShortStringWrapper w3 = w2;
/external/libvncserver/libvncserver/
H A Dscale.c87 double x1,y1,w1,h1, x2, y2, w2, h2; local
111 w2 = CEIL(w1 + ( x1 - x2 ));
116 * function, *x, *y, *w, *h, x2, y2, w2, h2,
123 *w = (int)w2;
/external/libvorbis/lib/
H A Dmdct.c499 DATA_TYPE *w2=w+n2; local
518 w2[i]= MULT_NORM(r1*T[1] + r0*T[0]);
519 w2[i+1]= MULT_NORM(r1*T[0] - r0*T[1]);
530 w2[i]= MULT_NORM(r1*T[1] + r0*T[0]);
531 w2[i+1]= MULT_NORM(r1*T[0] - r0*T[1]);
542 w2[i]= MULT_NORM(r1*T[1] + r0*T[0]);
543 w2[i+1]= MULT_NORM(r1*T[0] - r0*T[1]);
/external/opencv/cv/src/
H A Dcvmatchcontours.cpp231 double match_v, d12, area1, area2, r11, r12, r21, r22, w1, w2; local
284 r11 = r12 = r21 = r22 = w1 = w2 = d12 = 0;
326 w2 = ptr21[j]->area / area2;
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 );
H A D_cvmatrix.h284 const float* src2, int w2, int h2,
295 for( i = 0; i < h1; i++, src1 += w1, dst += w2 )
296 for( j = 0; j < w2; j++ )
300 s += src1[k]*src2[j + k*w2];
304 icvCheckVector_32f( dst, h1*w2 );
309 const double* src2, int w2, int h2,
320 for( i = 0; i < h1; i++, src1 += w1, dst += w2 )
321 for( j = 0; j < w2; j++ )
325 s += src1[k]*src2[j + k*w2];
329 icvCheckVector_64f( dst, h1*w2 );
283 icvMulMatrix_32f( const float* src1, int w1, int h1, const float* src2, int w2, int h2, float* dst ) argument
308 icvMulMatrix_64d( const double* src1, int w1, int h1, const double* src2, int w2, int h2, double* dst ) argument
[all...]
/external/openssh/
H A Dblocks.c54 M(w1 ,w15,w10,w2 ) \
55 M(w2 ,w0 ,w11,w3 ) \
57 M(w4 ,w2 ,w13,w5 ) \
62 M(w9 ,w7 ,w2 ,w10) \
108 uint64 w2 = load_bigendian(in + 16); local
125 F(w2 ,0xb5c0fbcfec4d3b2fULL)
144 F(w2 ,0x0fc19dc68b8cd5b5ULL)
163 F(w2 ,0x4d2c6dfc5ac42aedULL)
182 F(w2 ,0x2748774cdf8eeb99ULL)
201 F(w2 ,
[all...]
/external/valgrind/coregrind/m_replacemalloc/
H A Dvg_replace_malloc.c159 UWord u1, v1, w1,w2,t; local
170 w2 = t >> halfShift;
172 rHi = u1 * v1 + w2 + (w1 >> halfShift);
/external/valgrind/none/tests/amd64/
H A Dbmi.c858 ULong w1, w2; local
861 w2 = 0x57657438291CDEF0ULL;
865 do_andn64(&flags, &res, w1, w2);
866 printf("andn64 %016llx %016llx -> %016llx %04x\n", w1, w2, res, flags);
869 w2 = ((w2 >> 2) | (w2 >> 1)) + (w2 / 17ULL);
873 w2 = 0x57657438291CDEF0ULL;
877 do_andn32(&flags, &res, w1, w2);
[all...]

Completed in 1700 milliseconds

123