Searched refs:min_v (Results 1 – 5 of 5) sorted by relevance
/external/libyuv/files/util/ |
D | psnr_main.cc | 42 double min_y, min_u, min_v, min_all; member 313 if (distorted_frame->v < cur_distortion_psnr->min_v) { in UpdateMetrics() 314 cur_distortion_psnr->min_v = distorted_frame->v; in UpdateMetrics() 407 cur_distortion_psnr->min_v = kMaxPSNR; in main() 587 cur_distortion_psnr->min_v, cur_distortion_psnr->min_all, in main() 593 cur_distortion_ssim->min_v, cur_distortion_ssim->min_all, in main()
|
/external/freetype/src/autofit/ |
D | aflatin2.c | 815 FT_Pos min_u, min_v, max_u, max_v; in af_latin2_hints_compute_segments() local 823 min_v = max_v = point->v; in af_latin2_hints_compute_segments() 838 if ( point->v < min_v ) in af_latin2_hints_compute_segments() 839 min_v = point->v; in af_latin2_hints_compute_segments() 854 segment->min_coord = (FT_Short) min_v; in af_latin2_hints_compute_segments() 856 segment->height = (FT_Short)( max_v - min_v ); in af_latin2_hints_compute_segments()
|
/external/libcxx/utils/libcxx/test/ |
D | config.py | 237 maj_v, min_v, _ = self.cxx.version 241 cxx_type, maj_v, min_v)) 478 maj_v, min_v = (macros['__GLIBC__'], macros['__GLIBC_MINOR__']) 481 self.config.available_features.add('glibc-%s.%s' % (maj_v, min_v))
|
/external/tensorflow/tensorflow/tools/tensorflow_builder/compat_checker/ |
D | compat_checker.py | 690 min_v = req.range[0] # minimum supported version 693 lg = _compare_versions(min_v, ver)["larger"] # `ver` should be larger
|
/external/webp/src/mux/ |
D | anim_encode.c | 590 static WEBP_INLINE int clip(int v, int min_v, int max_v) { in clip() argument 591 return (v < min_v) ? min_v : (v > max_v) ? max_v : v; in clip()
|