Home
last modified time | relevance | path

Searched refs:_w (Results 1 – 25 of 56) sorted by relevance

123

/external/webrtc/webrtc/system_wrappers/source/
Dtimestamp_extrapolator.cc48 _w[0] = 90.0; in Reset()
49 _w[1] = 0; in Reset()
101 _w[1] = -_w[0] * tMs; in Update()
108 static_cast<double>(tMs) * _w[0] - _w[1]; in Update()
127 _w[0] = _w[0] + K[0] * residual; in Update()
128 _w[1] = _w[1] + K[1] * residual; in Update()
168 if (_w[0] < 1e-3) in ExtrapolateLocalTime()
177 static_cast<double>(_startMs) + (timestampDiff - _w[1]) / in ExtrapolateLocalTime()
178 _w[0] + 0.5); in ExtrapolateLocalTime()
/external/clang/test/CXX/lex/lex.literal/lex.ext/
Dp7.cpp13 long double operator "" _w(long double);
14 std::string operator "" _w(const char16_t*, size_t);
15 unsigned operator "" _w(const char*);
17 auto v1 = 1.2_w; // calls operator""_w(1.2L) in main()
18 auto v2 = u"one"_w; // calls operator""_w(u"one", 3) in main()
19 auto v3 = 12_w; // calls operator""_w("12") in main()
20 …"two"_w; // expected-error {{no matching literal operator for call to 'operator""_w' wi… in main()
/external/mesa3d/src/glsl/builtins/ir/
Dnoise4.ir8 (declare () float _w)
17 …(assign (x) (var_ref _w) (expression float noise(expression vec4 + (var_ref _p) (constant vec4 (60…
22 (assign (w) (var_ref _r) (var_ref _w))
32 (declare () float _w)
41 …(assign (x) (var_ref _w) (expression float noise(expression vec3 + (var_ref _p) (constant vec3 (60…
46 (assign (w) (var_ref _r) (var_ref _w))
56 (declare () float _w)
65 …(assign (x) (var_ref _w) (expression float noise(expression vec2 + (var_ref _p) (constant vec2 (60…
70 (assign (w) (var_ref _r) (var_ref _w))
80 (declare () float _w)
[all …]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
DbtQuadWord.h114 SIMD_FORCE_INLINE void setW(btScalar _w) { m_floats[3] = _w;}; in ATTRIBUTE_ALIGNED16()
173 …INLINE void setValue(const btScalar& _x, const btScalar& _y, const btScalar& _z,const btScalar& _w) in ATTRIBUTE_ALIGNED16()
178 m_floats[3]=_w; in ATTRIBUTE_ALIGNED16()
202 …E_INLINE btQuadWord(const btScalar& _x, const btScalar& _y, const btScalar& _z,const btScalar& _w) in ATTRIBUTE_ALIGNED16()
204 m_floats[0] = _x, m_floats[1] = _y, m_floats[2] = _z, m_floats[3] = _w; in ATTRIBUTE_ALIGNED16()
DbtConvexHull.h156 int4(int _x,int _y, int _z,int _w){x=_x;y=_y;z=_z;w=_w;} in int4() argument
DbtVector3.h573 SIMD_FORCE_INLINE void setW(btScalar _w) { m_floats[3] = _w;}; in ATTRIBUTE_ALIGNED16()
1084 …CE_INLINE btVector4(const btScalar& _x, const btScalar& _y, const btScalar& _z,const btScalar& _w) in btVector4() argument
1087 m_floats[3] = _w; in btVector4()
1214 …INLINE void setValue(const btScalar& _x, const btScalar& _y, const btScalar& _z,const btScalar& _w) in setValue() argument
1219 m_floats[3]=_w; in setValue()
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
DbtVector4.java64 public btVector4(float _x, float _y, float _z, float _w) { in btVector4() argument
65 this(LinearMathJNI.new_btVector4__SWIG_1(_x, _y, _z, _w), true); in btVector4()
88 public void setValue(float _x, float _y, float _z, float _w) { in setValue() argument
89 LinearMathJNI.btVector4_setValue(swigCPtr, this, _x, _y, _z, _w); in setValue()
Dint4.java96 public int4(int _x, int _y, int _z, int _w) { in int4() argument
97 this(LinearMathJNI.new_int4__SWIG_1(_x, _y, _z, _w), true); in int4()
DbtQuaternion.java64 public btQuaternion(float _x, float _y, float _z, float _w) { in btQuaternion() argument
65 this(LinearMathJNI.new_btQuaternion__SWIG_1(_x, _y, _z, _w), true); in btQuaternion()
DbtVector3.java180 public void setW(float _w) { in setW() argument
181 LinearMathJNI.btVector3_setW(swigCPtr, this, _w); in setW()
/external/opencv/ml/src/
Dmlann_mlp.cpp309 CvMat hdr[2], _w, *layer_in = &hdr[0], *layer_out = &hdr[1], *temp; in predict() local
324 cvInitMatHeader( &_w, layer_in->cols, layer_out->cols, CV_64F, weights[j] ); in predict()
325 cvGEMM( layer_in, &_w, 1, 0, 0, layer_out ); in predict()
326 calc_activ_func( layer_out, _w.data.db + _w.rows*_w.cols ); in predict()
936 CvMat _w, _dw, hdr1, hdr2, ghdr1, ghdr2, _df; in train_backprop() local
977 cvInitMatHeader( &_w, x1->cols, x2->cols, CV_64F, weights[i] ); in train_backprop()
978 cvGEMM( x1, &_w, 1, 0, 0, x2 ); in train_backprop()
981 calc_activ_func_deriv( x2, &_df, _w.data.db + _w.rows*_w.cols ); in train_backprop()
1020 cvInitMatHeader( &_w, n1+1, n2, CV_64F, weights[i] ); in train_backprop()
1025 cvAdd( &_w, &_dw, &_w ); in train_backprop()
[all …]
/external/libjpeg-turbo/java/
DTJBench.java423 int w = 0, h = 0, subsamp = -1, cs = -1, _w, _h, _tilew, _tileh, in decompTest() local
473 _w = w; _h = h; _tilew = tilew; _tileh = tileh; in decompTest()
478 System.out.format(" --> %d x %d", sf.getScaled(_w), in decompTest()
494 _w = h; _h = w; _tilew = tileh; _tileh = tilew; in decompTest()
501 _w = _w - (_w % TJ.getMCUWidth(_subsamp)); in decompTest()
507 _w = _w - (_w % TJ.getMCUHeight(_subsamp)); in decompTest()
511 _ntilesw = (_w + _tilew - 1) / _tilew; in decompTest()
528 for (x = 0; x < _w; x += _tilew, tile++) { in decompTest()
530 t[tile].width = Math.min(_tilew, _w - x); in decompTest()
588 _tilew = _w; in decompTest()
[all …]
/external/libjpeg-turbo/
Dtjbench.c483 int w=0, h=0, subsamp=-1, cs=-1, _w, _h, _tilew, _tileh, in decompTest() local
552 _w=w; _h=h; _tilew=tilew; _tileh=tileh; in decompTest()
558 printf(" --> %d x %d", TJSCALED(_w, sf), TJSCALED(_h, sf)); in decompTest()
578 _w=h; _h=w; _tilew=tileh; _tileh=tilew; in decompTest()
583 _w=_w-(_w%tjMCUWidth[_subsamp]); in decompTest()
587 _w=_w-(_w%tjMCUHeight[_subsamp]); in decompTest()
590 _ntilesw=(_w+_tilew-1)/_tilew; in decompTest()
604 t[tile].r.w=min(_tilew, _w-col*_tilew); in decompTest()
666 if(w==tilew) _tilew=_w; in decompTest()
670 if(decomp(NULL, jpegbuf, jpegsize, NULL, _w, _h, _subsamp, 0, in decompTest()
/external/bison/lib/
Dstdio-impl.h55 # define _w pub._w macro
/external/libvpx/libvpx/vpx_dsp/
Dfastssim.c44 static void fs_ctx_init(fs_ctx *_ctx, int _w, int _h, int _nlevels) { in fs_ctx_init() argument
50 lw = (_w + 1) >> 1; in fs_ctx_init()
71 lw = (_w + 1) >> 1; in fs_ctx_init()
137 int _s2ystride, int _w, int _h) { in fs_downsample_level0() argument
157 i1 = FS_MINI(i0 + 1, _w); in fs_downsample_level0()
425 const unsigned char *_dst, int _dystride, int _w, int _h) { in calc_ssim() argument
430 fs_ctx_init(&ctx, _w, _h, FS_NLEVELS); in calc_ssim()
431 fs_downsample_level0(&ctx, _src, _systride, _dst, _dystride, _w, _h); in calc_ssim()
Dpsnrhvs.c94 double _par, int _w, int _h, int _step, in calc_psnrhvs() argument
126 for (x = 0; x < _w - 7; x += _step) { in calc_psnrhvs()
/external/webrtc/webrtc/system_wrappers/include/
Dtimestamp_extrapolator.h33 double _w[2]; variable
/external/libvncserver/test/
Dtjbench.c356 int w=0, h=0, subsamp=-1, _w, _h, _tilew, _tileh, _subsamp; in dodecomptest() local
414 _w=w; _h=h; _tilew=tilew; _tileh=tileh; in dodecomptest()
420 printf(" --> %d x %d", TJSCALED(_w, sf), TJSCALED(_h, sf)); in dodecomptest()
435 if(w==tilew) _tilew=_w; in dodecomptest()
437 if(decomptest(NULL, jpegbuf, jpegsize, NULL, _w, _h, _subsamp, 0, in dodecomptest()
/external/libedit/src/
Dchartype.h76 #define FUN(prefix,rest) prefix ## _w ## rest
77 #define FUNW(type) type ## _w
/external/clang/test/CodeGen/
Dstruct.c99 struct _w { struct
/external/mesa3d/src/mesa/x86/rtasm/
Dx86sse.h134 #define SHUF(_x,_y,_z,_w) (((_x)<<0) | ((_y)<<2) | ((_z)<<4) | ((_w)<<6)) argument
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/es-ES/
Des-ES_map-xsampa_aut.utf14 …-}' '{XS:*}' '{XS:_"}' '{XS:~}' '{XS:`}' '{XS:_~}' '{XS:_}}' '{XS:_x}' '{XS:_w}' '{XS:_v}'
33 …:*}' '{XS:_"}' '{XS:~}' '{XS:`}' '{XS:_~}' '{XS:_}}' '{XS:_x}' '{XS:_w}' '{XS:_v}' '{XS:_…
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/fr-FR/
Dfr-FR_map-xsampa_aut.utf15 …'{XS:_w}' '{XS:_v}' '{XS:_t}' '{XS:_r}' '{XS:_q}' '{XS:_o}' '{XS:_n}' '{XS:_m}' '{XS:_l}' …
35 …:-}' '{XS:*}' '{XS:_"}' '{XS:`}' '{XS:_~}' '{XS:_}}' '{XS:_x}' '{XS:_w}' '{XS:_v}' '{XS:_…
/external/libvpx/libvpx/test/
Dresize_test.cc85 FrameInfo(vpx_codec_pts_t _pts, unsigned int _w, unsigned int _h) in FrameInfo()
86 : pts(_pts), w(_w), h(_h) {} in FrameInfo()
/external/opencv/cv/src/
Dcvundistort.cpp351 double _x = i*ir[1] + ir[2], _y = i*ir[4] + ir[5], _w = i*ir[7] + ir[8]; in cvInitUndistortRectifyMap() local
353 for( j = 0; j < size.width; j++, _x += ir[0], _y += ir[3], _w += ir[6] ) in cvInitUndistortRectifyMap()
355 double w = 1./_w, x = _x*w, y = _y*w; in cvInitUndistortRectifyMap()

123