Home
last modified time | relevance | path

Searched refs:_weight (Results 1 – 12 of 12) sorted by relevance

/external/libxcam/modules/ocl/
Dcl_video_stabilizer.cpp344 _weight.clear (); in ~MotionFilter()
357 _weight.resize (2 * _radius + 1); in set_filters()
361 _weight[i] = exp(-dis / (_stdev * _stdev)); in set_filters()
362 sum += _weight[i]; in set_filters()
366 _weight[i] /= sum; in set_filters()
412 res = res + cumulate_motion (index, i, motions) * _weight[i]; in stabilize()
413 sum += _weight[i]; in stabilize()
Dcl_video_stabilizer.h154 std::vector<float> _weight; variable
/external/libaom/libaom/aom_dsp/
Dpsnrhvs.c105 static double convert_score_db(double _score, double _weight, int bit_depth) { in convert_score_db() argument
107 assert(_score * _weight >= 0.0); in convert_score_db()
113 if (_weight * _score < pix_max * pix_max * 1e-10) return MAX_PSNR; in convert_score_db()
114 return 10 * (log10(pix_max * pix_max) - log10(_weight * _score)); in convert_score_db()
Dfastssim.c436 static double convert_ssim_db(double _ssim, double _weight) { in convert_ssim_db() argument
437 assert(_weight >= _ssim); in convert_ssim_db()
438 if ((_weight - _ssim) < 1e-10) return MAX_SSIM_DB; in convert_ssim_db()
439 return 10 * (log10(_weight) - log10(_weight - _ssim)); in convert_ssim_db()
/external/libvpx/libvpx/vpx_dsp/
Dpsnrhvs.c108 static double convert_score_db(double _score, double _weight, int bit_depth) { in convert_score_db() argument
110 assert(_score * _weight >= 0.0); in convert_score_db()
116 if (_weight * _score < pix_max * pix_max * 1e-10) return MAX_PSNR; in convert_score_db()
117 return 10 * (log10(pix_max * pix_max) - log10(_weight * _score)); in convert_score_db()
Dfastssim.c442 static double convert_ssim_db(double _ssim, double _weight) { in convert_ssim_db() argument
443 assert(_weight >= _ssim); in convert_ssim_db()
444 if ((_weight - _ssim) < 1e-10) return MAX_SSIM_DB; in convert_ssim_db()
445 return 10 * (log10(_weight) - log10(_weight - _ssim)); in convert_ssim_db()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DPathNumbering.h138 : _source(source), _target(target), _weight(0), _edgeType(NORMAL), in BallLarusEdge()
184 unsigned _weight;
/external/autotest/client/cros/netprotos/
Dcros_p2p.py123 srvname, _priority, _weight, port = service
163 srvname, _priority, _weight, port = service
/external/swiftshader/third_party/LLVM/lib/Analysis/
DPathNumbering.cpp190 return(_weight); in getWeight()
195 _weight = weight; in setWeight()
/external/tensorflow/tensorflow/python/grappler/
Dlayout_optimizer_test.py51 def _weight(shape): function
75 w_conv1 = _weight([5, 5, 1, 32])
79 w_conv2 = _weight([5, 5, 32, 64])
99 w_conv1 = _weight([5, 5, 1, 32])
100 w_conv2 = _weight([5, 5, 1, 32])
109 w_conv1 = _weight([5, 5, 1, 32])
/external/ImageMagick/Magick++/lib/
DDrawable.cpp781 _weight(400), in DrawableFont()
792 _weight(weight_), in DrawableFont()
801 _weight(original_._weight), in DrawableFont()
825 DrawSetFontWeight( context_, _weight ); in operator ()()
/external/ImageMagick/Magick++/lib/Magick++/
DDrawable.h1084 unsigned int _weight; variable