/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/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/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/bison/lib/ |
D | stdio-impl.h | 55 # define _w pub._w macro
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | operations.hpp | 304 Mat _a(a, false), _u(u, false), _w(w, false), _vt(vt, false); in compute() local 305 SVD::compute(_a, _w, _u, _vt); in compute() 306 …CV_Assert(_w.data == (uchar*)&w.val[0] && _u.data == (uchar*)&u.val[0] && _vt.data == (uchar*)&vt.… in compute() 313 Mat _a(a, false), _w(w, false); in compute() local 314 SVD::compute(_a, _w); in compute() 315 CV_Assert(_w.data == (uchar*)&w.val[0]); in compute() 324 Mat _u(u, false), _w(w, false), _vt(vt, false), _rhs(rhs, false), _dst(dst, false); in backSubst() local 325 SVD::backSubst(_w, _u, _vt, _rhs, _dst); in backSubst()
|
/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/opencv3/modules/imgproc/src/ |
D | smooth.cpp | 2806 __m128 _w = _mm_mul_ps(_cw, _sw); in operator ()() local 2807 _cw = _mm_mul_ps(_w, _valF); in operator ()() 2809 _sw = _mm_hadd_ps(_w, _cw); in operator ()() 2867 __m128 _w = _mm_set_ps(color_weight[buf[3]],color_weight[buf[2]], in operator ()() local 2871 _w = _mm_mul_ps(_w,_sw); in operator ()() 2872 _b = _mm_mul_ps(_b, _w); in operator ()() 2873 _g = _mm_mul_ps(_g, _w); in operator ()() 2874 _r = _mm_mul_ps(_r, _w); in operator ()() 2876 _w = _mm_hadd_ps(_w, _b); in operator ()() 2879 _w = _mm_hadd_ps(_w, _g); in operator ()() [all …]
|
D | undistort.cpp | 137 double _x = i*ir[1] + ir[2], _y = i*ir[4] + ir[5], _w = i*ir[7] + ir[8]; in initUndistortRectifyMap() local 139 for( int j = 0; j < size.width; j++, _x += ir[0], _y += ir[3], _w += ir[6] ) in initUndistortRectifyMap() 141 double w = 1./_w, x = _x*w, y = _y*w; in initUndistortRectifyMap()
|
/external/libedit/src/ |
D | chartype.h | 76 #define FUN(prefix,rest) prefix ## _w ## rest 77 #define FUNW(type) type ## _w
|
/external/opencv3/modules/ml/src/ |
D | ann_mlp.cpp | 804 Mat _w = weights[i].rowRange(0, x1.cols); in train_backprop() local 805 gemm(x1, _w, 1, noArray(), 0, x2); in train_backprop() 841 Mat _w = weights[i].rowRange(0, n1); in train_backprop() local 842 gemm( grad1, _w, 1, noArray(), 0, grad2, GEMM_2_T ); in train_backprop() 917 Mat _w = ann->weights[i].rowRange(0, x1.cols); in operator ()() local 918 gemm( x1, _w, 1, noArray(), 0, x2 ); in operator ()() 973 Mat _w = ann->weights[i].rowRange(0, n1); in operator ()() local 974 gemm(grad1, _w, 1, noArray(), 0, grad2, GEMM_2_T); in operator ()()
|
/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/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()
|
/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/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-US/ |
D | en-US_map-xsampa_aut.utf | 15 …'{XS:*}' '{XS:_"}' '{XS:~}' '{XS:`}' '{XS:_~}' '{XS:_}}' '{XS:_x}' '{XS:_w}' '{XS:_v}' '{… 43 …:-}' '{XS:*}' '{XS:_"}' '{XS:~}' '{XS:_~}' '{XS:_}}' '{XS:_x}' '{XS:_w}' '{XS:_v}' '{XS:_…
|
/external/icu/icu4c/source/data/translit/ |
D | IPA_XSampa.txt | 12 ʯ ↔ 'z`_w='; # LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL 63 ʷ ↔ '_w'; # MODIFIER LETTER SMALL W
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-GB/ |
D | en-GB_map-xsampa_aut.utf | 26 …'{XS:_t}' '{XS:_v}' '{XS:_w}' '{XS:_x}' '{XS:_}}' '{XS:_~}' '{XS:`}' '{XS:~}' '{XS:_"}' '… 47 …}' '{XS:_n}' '{XS:_o}' '{XS:_q}' '{XS:_r}' '{XS:_t}' '{XS:_v}' '{XS:_w}' '{XS:_x}' '{XS:_…
|