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/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/jmdns/src/javax/jmdns/impl/
DDNSRecord.java642 private final int _weight; field in DNSRecord.Service
649 this._weight = weight; in Service()
657 out.writeShort(_weight); in write()
675 dout.writeShort(_weight); in toByteArray()
699 return this._weight; in getWeight()
715 …return (_priority == s._priority) && (_weight == s._weight) && (_port == s._port) && _server.equal… in sameValue()
811 …return new ServiceInfoImpl(this.getQualifiedNameMap(), _port, _weight, _priority, persistent, _ser… in getServiceInfo()
DServiceInfoImpl.java52 private int _weight; field in ServiceInfoImpl
195 this._weight = weight; in ServiceInfoImpl()
220 this._weight = info.getWeight(); in ServiceInfoImpl()
586 return _weight; in getWeight()
887 _weight = srv.getWeight(); in updateRecord()
1133 …mpl serviceInfo = new ServiceInfoImpl(this.getQualifiedNameMap(), _port, _weight, _priority, _pers… in clone()
1196 …his.getQualifiedName(), DNSRecordClass.CLASS_IN, unique, ttl, _priority, _weight, _port, localHost… in answers()
/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.py50 def _weight(shape): function
74 w_conv1 = _weight([5, 5, 1, 32])
78 w_conv2 = _weight([5, 5, 32, 64])
98 w_conv1 = _weight([5, 5, 1, 32])
99 w_conv2 = _weight([5, 5, 1, 32])
108 w_conv1 = _weight([5, 5, 1, 32])
/external/ImageMagick/Magick++/lib/
DDrawable.cpp812 _weight(400), in DrawableFont()
823 _weight(weight_), in DrawableFont()
832 _weight(original_._weight), in DrawableFont()
856 DrawSetFontWeight( context_, _weight ); in operator ()()
/external/ImageMagick/Magick++/lib/Magick++/
DDrawable.h1099 unsigned int _weight; variable