/external/webrtc/webrtc/system_wrappers/source/ |
D | timestamp_extrapolator.cc | 48 _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/ |
D | p7.cpp | 13 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/ |
D | noise4.ir | 8 (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/ |
D | btQuadWord.h | 114 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()
|
D | btConvexHull.h | 156 int4(int _x,int _y, int _z,int _w){x=_x;y=_y;z=_z;w=_w;} in int4() argument
|
D | btVector3.h | 573 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/ |
D | btVector4.java | 64 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()
|
D | int4.java | 96 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()
|
D | btQuaternion.java | 64 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()
|
D | btVector3.java | 180 public void setW(float _w) { in setW() argument 181 LinearMathJNI.btVector3_setW(swigCPtr, this, _w); in setW()
|
/external/opencv/ml/src/ |
D | mlann_mlp.cpp | 309 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/ |
D | TJBench.java | 423 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/ |
D | tjbench.c | 483 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/ |
D | stdio-impl.h | 55 # define _w pub._w macro
|
/external/libvpx/libvpx/vpx_dsp/ |
D | fastssim.c | 44 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()
|
D | psnrhvs.c | 94 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/ |
D | timestamp_extrapolator.h | 33 double _w[2]; variable
|
/external/libvncserver/test/ |
D | tjbench.c | 356 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/ |
D | chartype.h | 76 #define FUN(prefix,rest) prefix ## _w ## rest 77 #define FUNW(type) type ## _w
|
/external/clang/test/CodeGen/ |
D | struct.c | 99 struct _w { struct
|
/external/mesa3d/src/mesa/x86/rtasm/ |
D | x86sse.h | 134 #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/ |
D | es-ES_map-xsampa_aut.utf | 14 …-}' '{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/ |
D | fr-FR_map-xsampa_aut.utf | 15 …'{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/ |
D | resize_test.cc | 85 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/ |
D | cvundistort.cpp | 351 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()
|