Searched refs:w2 (Results 26 - 50 of 222) sorted by last modified time

123456789

/external/stlport/src/
H A Dnum_get_float.cpp132 uint64 w2 = t >> 32; local
136 high = u1 * v1 + w2 + (x >> 32);
/external/stlport/test/eh/
H A Ddeccxx.mak43 # CXXFLAGS = +w2 -xildoff -D_STLP_USE_NEWALLOC -DEH_NO_SGI_STL -DEH_NEW_HEADERS -DEH_VECTOR_OPERATOR_NEW -DEH_DELETE_HAS_THROW_SPEC
H A Dsunpro-64.mak36 # CXXFLAGS = +w2 -xildoff -D_STLP_USE_NEWALLOC -DEH_NO_SGI_STL -DEH_NEW_HEADERS -DEH_VECTOR_OPERATOR_NEW -DEH_DELETE_HAS_THROW_SPEC
H A Dsunpro.mak38 # CXXFLAGS = +w2 -xildoff -D_STLP_USE_NEWALLOC -DEH_NO_SGI_STL -DEH_NEW_HEADERS -DEH_VECTOR_OPERATOR_NEW -DEH_DELETE_HAS_THROW_SPEC
H A Dsunpro42.mak36 CXXFLAGS = $(ARCHF) +w2 -mt -features=rtti ${STL_INCL}
37 # CXXFLAGS = +w2 ${STL_INCL}
/external/srec/srec/cfront/
H A Dspec_anl.c456 float w2 = 1 - w1; local
460 tmpbuf[i] = (int)(w1 * inbuf[u] + w2 * inbuf[l]);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Ddeterminize.h49 W operator()(const W &w1, const W &w2) const { return Plus(w1, w2); }
62 Weight operator()(const Weight &w1, const Weight &w2) const {
64 StringWeightIterator<L, S> iter2(w2);
69 if (w1.Size() == 0 || w2.Size() == 0)
73 else if (w2 == Weight::Zero())
91 Weight operator()(const Weight &w1, const Weight &w2) const {
92 return Weight(label_common_divisor_(w1.Value1(), w2.Value1()),
93 weight_common_divisor_(w1.Value2(), w2.Value2()));
H A Dfactor-weight.h90 StringWeight<L, S> w2; local
92 w2.PushBack(iter.Value());
93 return make_pair(w1, w2);
118 GallicWeight<L, W, S> w2(iter.Value().second, W::One());
119 return make_pair(w1, w2);
H A Dfloat-weight.h68 inline bool operator==(const FloatWeight &w1, const FloatWeight &w2) { argument
72 volatile float v2 = w2.Value();
76 inline bool operator!=(const FloatWeight &w1, const FloatWeight &w2) { argument
77 return !(w1 == w2);
80 inline bool ApproxEqual(const FloatWeight &w1, const FloatWeight &w2, argument
82 return w1.Value() <= w2.Value() + delta && w2.Value() <= w1.Value() + delta;
153 const TropicalWeight &w2) {
154 return w1.Value() < w2.Value() ? w1 : w2;
152 Plus(const TropicalWeight &w1, const TropicalWeight &w2) argument
157 Times(const TropicalWeight &w1, const TropicalWeight &w2) argument
168 Divide(const TropicalWeight &w1, const TropicalWeight &w2, DivideType typ = DIVIDE_ANY) argument
219 Plus(const LogWeight &w1, const LogWeight &w2) argument
231 Times(const LogWeight &w1, const LogWeight &w2) argument
241 Divide(const LogWeight &w1, const LogWeight &w2, DivideType typ = DIVIDE_ANY) argument
[all...]
H A Dmap.h732 AW w2 = arc.weight.Value2(); local
742 return A(arc.ilabel, l, w2, arc.nextstate);
786 AW w2 = arc.weight.Value2(); local
820 return A(arc.ilabel, l, w2, arc.nextstate);
H A Dproduct-weight.h37 ProductWeight(W1 w1, W2 w2) : value1_(w1), value2_(w2) {} argument
112 const ProductWeight<W1, W2> &w2) {
113 return w1.Value1() != w2.Value1() || w1.Value2() != w2.Value2();
119 const ProductWeight<W1, W2> &w2,
121 return w1 == w2;
163 W2 w2 = W2::Zero(); local
164 strm >> w2; local
166 w = ProductWeight<W1, W2>(w1, w2);
111 operator !=(const ProductWeight<W1, W2> &w1, const ProductWeight<W1, W2> &w2) argument
118 ApproxEqual(const ProductWeight<W1, W2> &w1, const ProductWeight<W1, W2> &w2, float delta = kDelta) argument
[all...]
H A Drandom-weight.h136 W2 w2 = generator2_(); local
137 return Weight(w1, w2);
H A Dstring-weight.h289 const StringWeight<L, S> &w2) {
290 if (w1.Size() != w2.Size())
294 StringWeightIterator<L, S> iter2(w2);
305 const StringWeight<L, S> &w2) {
306 return !(w1 == w2);
311 const StringWeight<L, S> &w2,
313 return w1 == w2;
363 const StringWeight<L, S> &w2) {
365 return w2;
366 if (w2
288 operator ==(const StringWeight<L, S> &w1, const StringWeight<L, S> &w2) argument
304 operator !=(const StringWeight<L, S> &w1, const StringWeight<L, S> &w2) argument
310 ApproxEqual(const StringWeight<L, S> &w1, const StringWeight<L, S> &w2, float delta = kDelta) argument
362 Plus(const StringWeight<L, S> &w1, const StringWeight<L, S> &w2) argument
379 Plus(const StringWeight<L, STRING_LEFT> &w1, const StringWeight<L, STRING_LEFT> &w2) argument
398 Plus(const StringWeight<L, STRING_RIGHT> &w1, const StringWeight<L, STRING_RIGHT> &w2) argument
416 Times(const StringWeight<L, S> &w1, const StringWeight<L, S> &w2) argument
432 Divide(const StringWeight<L, S> &w1, const StringWeight<L, S> &w2, DivideType typ) argument
457 Divide(const StringWeight<L, STRING_RIGHT> &w1, const StringWeight<L, STRING_RIGHT> &w2, DivideType typ) argument
482 Divide(const StringWeight<L, STRING_RIGHT_RESTRICT> &w1, const StringWeight<L, STRING_RIGHT_RESTRICT> &w2, DivideType typ) argument
513 GallicWeight(StringWeight<L, S> w1, W w2) argument
[all...]
H A Dweight.h132 bool operator()(const W &w1, const W &w2) const {
133 return (Plus(w1, w2) == w1) && w1 != w2;
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_mdls.h59 #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 } }
/external/skia/src/core/
H A DSkMatrix.cpp1710 double w1, w2; local
1747 w2 = Sd;
1756 w2 = 0.5*(trace - discriminant);
1759 w2 = 0.5*(trace + discriminant);
1777 scale->fY = SkDoubleToScalar(w2);
/external/skia/src/gpu/
H A DGrPathUtils.cpp312 const SkScalar w2 = 2.f * weight; local
317 klm[3] = w2 * (p[1].fY - p[0].fY);
318 klm[4] = w2 * (p[0].fX - p[1].fX);
319 klm[5] = w2 * (p[1].fX * p[0].fY - p[0].fX * p[1].fY);
321 klm[6] = w2 * (p[2].fY - p[1].fY);
322 klm[7] = w2 * (p[1].fX - p[2].fX);
323 klm[8] = w2 * (p[2].fX * p[1].fY - p[1].fX * p[2].fY);
/external/smack/src/org/xbill/DNS/
H A DFormattedTime.java16 private static NumberFormat w2, w4; field in class:FormattedTime
19 w2 = new DecimalFormat();
20 w2.setMinimumIntegerDigits(2);
42 sb.append(w2.format(c.get(Calendar.MONTH)+1));
43 sb.append(w2.format(c.get(Calendar.DAY_OF_MONTH)));
44 sb.append(w2.format(c.get(Calendar.HOUR_OF_DAY)));
45 sb.append(w2.format(c.get(Calendar.MINUTE)));
46 sb.append(w2.format(c.get(Calendar.SECOND)));
H A DLOCRecord.java18 private static NumberFormat w2, w3; field in class:LOCRecord
24 w2 = new DecimalFormat();
25 w2.setMinimumIntegerDigits(2);
228 renderFixedPoint(sb, w2, altitude - 10000000, 100);
232 renderFixedPoint(sb, w2, size, 100);
236 renderFixedPoint(sb, w2, hPrecision, 100);
240 renderFixedPoint(sb, w2, vPrecision, 100);
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_opengl.h4657 typedef void (APIENTRYP PFNGLDEFORMATIONMAP3DSGIXPROC) (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points);
4658 typedef void (APIENTRYP PFNGLDEFORMATIONMAP3FSGIXPROC) (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points);
/external/qemu/distrib/sdl-1.2.15/src/video/gem/
H A DSDL_gemevents.c83 short x2,y2,w2,h2; local
89 x2=y2=w2=h2 = 0;
93 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2);
102 mouse_event,x2,y2,w2,h2,
177 short x2,y2,w2,h2; local
234 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
237 SDL_PrivateResize(w2, h2);
254 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
256 SDL_PrivateResize(w2, h2);
301 short x2, y2, w2, h local
[all...]
H A DSDL_gemvideo.c719 short x2,y2,w2,h2; local
740 if (!wind_calc(WC_BORDER, GEM_win_type, 0,0,width,height, &x2,&y2,&w2,&h2)) {
747 x2 = (GEM_desk_w-w2)>>1;
765 GEM_handle=wind_create(GEM_win_type, x2,y2,w2,h2);
781 wind_open(GEM_handle,x2,y2,w2,h2);
784 wind_get (GEM_handle, WF_WORKXYWH, &x2,&y2,&w2,&h2);
785 if (wind_calc(WC_BORDER, GEM_win_type, x2,y2,width,height, &x2,&y2,&w2,&h2)) {
786 wind_set (GEM_handle, WF_CURRXYWH, x2,y2,w2,h2);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dt1.c1142 OPJ_FLOAT64 w1 = 1, w2, wmsedec; local
1150 w2 = opj_dwt_getnorm(level, orient);
1152 w2 = opj_dwt_getnorm_real(level, orient);
1155 wmsedec = w1 * w2 * stepsize * (1 << bpno);
/external/opencv/cv/src/
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...]

Completed in 5846 milliseconds

123456789